Question: C++ 3.5.2: Basic if-else expressions. Complete the if-else statement to output Above -10 if the value of inVal is above -10. Otherwise, output -10 or

C++ 3.5.2: Basic if-else expressions.

Complete the if-else statement to output "Above -10" if the value of inVal is above -10. Otherwise, output "-10 or less".

Ex: If the input is -8, then the output is: Above -10

#include using namespace std;

int main() { int inVal; cin >> inVal; if (/* Your code goes here */) { cout << "Above -10" << endl; } else { cout << "-10 or less" << endl; }

return 0; }

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!