public static void Main()
while(choice != "Q" && choice != "q")
Console.WriteLine("Please input a number to know the square root up to the certain number.");
string n = Console.ReadLine();
if (double.TryParse(n, out number))
Console.WriteLine("The square root of " +i+ " is " +root.ToString("##.###")+ ".");
Console.WriteLine("Please enter a number from 1 to anything above.");
Console.WriteLine("Please enter a positive number.");
Console.WriteLine("Please enter q to quit and any other key to continue.");
choice = Console.ReadLine();
Console.WriteLine("Please enter a positive number.");