public static void Main()
Console.WriteLine("Enter a value for the length of the swimming pool");
vLength = double.Parse(Console.ReadLine());
Console.WriteLine("Enter a value for the width of the swimming pool");
vWidth = double.Parse(Console.ReadLine());
Console.WriteLine("Enter a value for the depth of the swimming pool");
vDepth = double.Parse(Console.ReadLine());
double Volume = vLength * vWidth * vDepth;
Console.WriteLine("Swimming pool volume: " + Volume);
Console.WriteLine("Do you want to restart the program? Y/N");
vContin = Console.ReadLine();
} while (vContin == "Y");
Console.WriteLine("Program Ended");