Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Internals A Deep Dive Into How Distributed Data Systems Work

Authors: Alex Petrov

1st Edition

1492040347, 978-1492040347

More Books

Students also viewed these Databases questions

Question

In an Excel Pivot Table, how is a Fact/Measure Column repeated?

Answered: 1 week ago