public static void Main()
string choice = "This value doesn't matter.";
while (choice != "n" && choice != "N")
Console.WriteLine("How many numbers would you like to calculate the square root of?");
string numbers = Console.ReadLine();
if (double.TryParse(numbers, out sqrt) && sqrt > 0)
Console.WriteLine("The square root of " + i + " = " + Math.Sqrt(i).ToString("##.###"));
Console.WriteLine("Would you like to run the program again? y/n");
choice = Console.ReadLine();
Console.WriteLine("Please enter a positive integer value.");