Question: C++ #include using namespace std; int main() { int grade = 40; if (grade < 50) cout < < below < < endl; if (grade

C++

#include using namespace std; int main() { int grade = 40; if (grade < 50) cout << below << endl; if (grade < 70) cout << mediocre << endl; if (grade < 100) cout << above << endl; return 0; }

Why does the code above print: [Note: You should not provide code for your answer] below mediocre above

How would you change the code in explain1.cpp so it only prints:

mediocre if grade = 75 ?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!