public static void Main()
string choice = "This value doesn't matter";
while (choice != "n" && choice != "N")
Console.WriteLine("How much numbers would you like to know the square root of?");
string values = Console.ReadLine();
if (double.TryParse(values, out number))
Console.WriteLine("Please enter a positive number");
Console.WriteLine("The square root of " +i+ " is = " +Math.Sqrt(i).ToString("##.##"));
Console.WriteLine("Enter a positive number");
Console.Write("Press y to continue Press n to stop");
choice = Console.ReadLine();