Page 1 of 1

3) Write a C++ program that allows the Teacher (user) to enter the grades scored (0-100) of a student. (50 points) The T

Posted: Fri May 20, 2022 4:34 pm
by answerhappygod
3 Write A C Program That Allows The Teacher User To Enter The Grades Scored 0 100 Of A Student 50 Points The T 1
3 Write A C Program That Allows The Teacher User To Enter The Grades Scored 0 100 Of A Student 50 Points The T 1 (50.97 KiB) Viewed 43 times
3) Write a C++ program that allows the Teacher (user) to enter the grades scored (0-100) of a student. (50 points) The Teacher (user) will input the grades of 5 subjects (Math, English, Computer Science, History and Physics). After all grades have been inputted, the program should display the sum and average of the grades. If the student scored: 95 to 100 then notify the Teacher that the letter grade is A, if the score is 90 to 94.99 then notify the user that the letter grade is A-, If the score is 87 to 89.99 then notify the user that the letter grade is B+ , If the score is 83 to 86.99 then notify the user that the letter grade is B. If the score is 80 to 82.99 then notify the user that the letter grade is B- If the score is 77 to 79.99 then notify the user that the letter grade is C+, If the score is 73 to 76.99 then notify the user that the letter grade is C. If the score is 70 to 72.99 then notify the user that the letter grade is Cs. If the score is 60 to 69.99 then notify the user that the letter grade is D and if the score is below 60 then notify the user that the letter grade is E. . Does not matter if you use struct or class keyword • Output: Should be tested will all the letter grades.