Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The function printGrade in Example 6-13 is written as a void function to compute and output the course grade. The course score is passed as
The function printGrade in Example 6-13 is written as a void function to compute and output the course grade. The course score is passed as a parameter to the function printGrade. Rewrite the function printGrade as a value-returning function so that it computes and returns the course grade. (The course grade must be output in the function main.) Also, change the name of the function to calculateGrade.
The function printGrade has been posted below for your convenience.
void printGrade(int cScore) { cout << "The course grade is: "; if (cScore >= 90) { cout << "A." << endl; } else if (cScore >= 80) { cout << "B." << endl; } else if(cScore >= 70) { cout << "C." << endl; } else if (cScore >= 60) { cout << "D." << endl; } else { cout << "F." << endl; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started