Question: think of the full C++ program that asks the student for his course score ,and then uses the function course Grade to find the grade
think of the full C++ program that asks the student for his course score ,and then uses the function course Grade to find the grade

15 a value between 0 and 100 1- Prototype, Char courseGrade(int score) 2. in main(), Cout>score; char courseGrade (int score) { switch (score / 10) { case 0: case 1: case 2: case 3: case 4: case 5: return 'F'; case 6: return 'D', case 7: return 'C'; case 8: return 'B'; case 9: case 10: return 'A'; ) ) Then Cout
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
