public static void Main()
Console.WriteLine("Enter length of swimming pool:");
vLength = double.Parse(Console.ReadLine());
Console.WriteLine("Enter Width of swimming pool:");
vWidth = double.Parse(Console.ReadLine());
Console.WriteLine("Enter depth of swimming pool:");
vDepth = double.Parse(Console.ReadLine());
vVolume = (vLength * vWidth * vDepth);
Console.WriteLine("The volume of the swimming pool is: " + vVolume + "cm cubed");
Console.WriteLine("Do another calculation? y/n");
vAnswer = Console.ReadLine();
Console.WriteLine("Program ended");