public static void Main()
Console.WriteLine("Please enter the current major you are pursuing.");
string strMajor = Console.ReadLine();
Console.WriteLine("Please enter your score in the class.");
string strScore = Console.ReadLine();
bool IsValidNumber = Int32.TryParse(strScore, out intScore);
bool ValidNumber = intScore >= 0 && intScore <= 100;
if (IsValidNumber == false || ValidNumber == false)
Console.WriteLine("ERROR: Please enter a whole number 0-100 for your score.");
Console.WriteLine("Valid Score Entered");
Console.WriteLine(strGrade);
if (intScore >= 90 && strMajor == "Information Systems")
Console.WriteLine("Congratulations! You are one of the best students in IS.");
Console.WriteLine("Congratulations! You are one of the best students.");