public static void Main()
Console.Write("Enter how many square roots you want to calculate: ");
string input = Console.ReadLine();
if (double.TryParse(input, out userInput))
Console.WriteLine("The square root of " + number + "=" + Math.Sqrt(number).ToString("##.###" ));
while(number <=userInput);
Console.WriteLine("Please enter a positive number.");
Console.WriteLine("Invalid input. Please enter a valid number.");
Console.WriteLine("Would you like to calculate more square roots? y/n");
string yn = Console.ReadLine();
if (yn == "y" || yn == "Y")