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
Get step-by-step solutions from verified subject matter experts
