public static void Main()
Console.WriteLine("Add meg a téglatest három oldalhosszát!");
double a = Double.Parse(Console.ReadLine());
double b = Double.Parse(Console.ReadLine());
double c = Double.Parse(Console.ReadLine());
double felszin = 2*(a*b+a*c+b*c);
double testatlo = Math.Sqrt(Math.Pow(a, 2)+Math.Pow(b, 2)+Math.Pow(c, 2));
Console.WriteLine("Térfogat: "+terfogat+" Felszín: "+felszin+" Testátló: "+testatlo);