using System;
public class Program
{
public static void Main()
Console.WriteLine("Your task, using conditionals of any sort. Create a program that prints out the letter grade for the following grade scale");
//94-100 A
//87-93 B
//80-86 C
//70-79 D
//<- 69 F
int grade = 91; //I should be able to replace the value in grade and check each outcome (A-F)
//YOUR CODE HERE
if(94<);
Console.WriteLine("Your grade is an A")
}
}//End of project