public static void Main()
Console.WriteLine("Please enter a whole number.");
string strInput = Console.ReadLine();
bool IsValidNumber = Int32.TryParse(strInput, out iScore);
Console.WriteLine(IsValidNumber);
Console.WriteLine(iScore);
if(IsValidNumber == false);
Console.WriteLine("Please enter a valid number");
Console.WriteLine("You get an A");
Console.WriteLine("You get a B");
Console.WriteLine("You get a C");
Console.WriteLine("You get a D");
Console.WriteLine("You get a F");