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