public static void Main()
Console.WriteLine("Enter a value for the length of the pool: ");
vLength = decimal.Parse(Console.ReadLine());
Console.WriteLine("Enter a value for the width of the pool: ");
vWidth = decimal.Parse(Console.ReadLine());
Console.WriteLine("Enter a value for the depth of the pool: ");
vDepth = decimal.Parse(Console.ReadLine());
Console.WriteLine("The volume of the pool is: " + (vLength * vWidth * vDepth) + " units cubed.");
Console.WriteLine("Would you like another calculation? y/n");
vAnswer = Console.ReadLine();
Console.WriteLine("Program ended");