Question
Here is the program I have to complete in C++: #include #include #include using namespace std; string STUDENT = ; // Add your Canvas login
Here is the program I have to complete in C++:
#include
string STUDENT = ""; // Add your Canvas login name extern string ASSIGNMENT;
// Add your function declaration here
/** * Describe the purpose of your program here. * @return 0 for success. */ int run() { // DON'T CHANGE ANYTHING IN THIS FUNCTION
cout << STUDENT << "-" << ASSIGNMENT << "-Graduation Calculator" << endl; cout << "-----------------------------------------" << endl;
cout << "Enter gpa, total credits and honors credits: "; double gpa; int credits, honorsCredits; cin >> gpa >> credits >> honorsCredits;
// You will write this function string result = getStatus(gpa, credits, honorsCredits);
cout << "Result is [\"" << result << "\"]" << endl;
return 0; }
// Implement your function here
This is the requirement for this homework:
I have already written the run() function. You should declare and define the function
getStatus() so that the program works correctly.
The graduation status to return is determined by the following rules:
Students must have completed at least 180 credits with a GPA of at least
2.0 to graduate. A student who does not meet both of these constraints
should receive a return value of "not graduating".
Students who do have enough credits to graduate and sufficiently high
GPAs will receive one of four return values depending on the GPA and
number of honors credits:
All students with GPAs between 2.0 and 3.6 receive a return value of
"graduating".
Students with fewer than 15 honors credits receive a return of "
laude" if their GPA is at least 3.6 but less than 3.8, and a return of
"magna laude" if their GPA is at least 3.8.
Students with 15 or more honors credits receive a return of "magn laude" if their GPA is at least 3.6 but less than 3.8, and a return of
"summa laude" if their GPA is at least 3.8.
Here are some example inputs and their resulting output:
For input of 3.87, 178, 16 the output is "not graduating"
For input of 1.5, 199, 30 the output is "not graduating"
For input of 2.7, 380, 50 the output is "graduating"
For input of 3.62, 200, 200 the output is "magna laude"
For input of 3.93, 185, 0 the output is "magna laude"
For input of 3.85, 190, 15 the output is "summa laude"
You can assume that GPA will be between 0.0 and 4.0 and that both credit counts will
be non-negative integers. You'll find the starter code in the download folder. To solve
this problem, work step-by-step as we've done in the past.
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