public static void Main()
Console.WriteLine("--------------- MY PROGRAM: Academic Report ---------------");
Console.WriteLine("Please Enter Your Major: ");
string Major = Console.ReadLine();
Console.WriteLine("Enter a score: ");
string userInput = Console.ReadLine();
bool isValidScore = Int32.TryParse(userInput, out userScore);
Console.WriteLine("ERROR: Please Enter a Whole Number!");
Console.WriteLine("You get an A");
if (Major == "Information Systems") {
Console.WriteLine("Congratulations! You are one of the best students in IS");
Console.WriteLine("Congratulations! You are one of the best students");
else if(userScore >= 80) {
Console.WriteLine("You get a B");
Console.WriteLine("You get a C");
else if (userScore >= 60){
Console.WriteLine("You get a D");
Console.WriteLine("You get an F");