public static void Main()
while (restart != "q" && restart!="Q")
Console.WriteLine("Starting from the 1s place, how many numbers would you like to square root of?");
double input = double.Parse(Console.ReadLine());
{Console.WriteLine("The square root of " + i + " is " + (Math.Sqrt(i).ToString("##.###")));
Console.WriteLine("Press q to quit or any other value to continue.");
restart = Console.ReadLine();