public static void Main()
Console.WriteLine("Please enter your major");
string major = Console.ReadLine();
Console.WriteLine("Please enter your score");
string scorestr = Console.ReadLine();
bool IsValidNumber = Int32.TryParse(scorestr, out score);
if (IsValidNumber == false)
Console.WriteLine("Please enter a valid number!");
if ( score < 0 || score > 100)
Console.WriteLine("Please enter a number between 1-100");
Console.WriteLine("You get an A");
case "Information Systems":
Console.WriteLine("Congratulations! You are one of the best students in IS.");
Console.WriteLine("Congratulations! You are one of the best students");
Console.WriteLine("You get a B");
Console.WriteLine("You get a C");
Console.WriteLine("You get a D");
Console.WriteLine("You get an F");