public static void Main()
Console.WriteLine("How many number would you like to know the square root of?");
string ans = Console.ReadLine();
if (double.TryParse(ans, out num))
Console.WriteLine("Enter a positive number");
Console.WriteLine("The square roots up to are" + num + ":");
Console.WriteLine("The square root of " + i + " is, " + Math)