public static void Main()
while (choice != "N" && choice != "n")
Console.WriteLine("How many square roots would you like to see?");
string sans = Console.ReadLine();
if (double.TryParse(sans, out i))
Console.WriteLine("The Square Root of " + num + " is: " + Math.Sqrt(num).ToString("##.###"));
Console.WriteLine("Do you want to restart the program?");
choice = Console.ReadLine();
Console.WriteLine("Please enter a Positive number.");
Console.WriteLine("Please enter a Valid number.");