C# Problems
C# Problems
Problem 1:
Create a program that determines a student’s grade. The program will read three
types of grade (quiz, mid-term, and final grade) and determine the grade
based on the following rules:
• if the average grade >=90 => grade = A
• if the average grade >= 70 and <90 => grade=B
• if the average grade>=50% and <70 => grade=C
• if the average grade <50 => grade=F
Problem 8