Question: Complete the if - else statement to output More than - 3 0 if the value of inVal is more than - 3 0

Complete the if-else statement to output "More than -30" if the value of inVal is more than -30. Otherwise, output "-30 or less". #include
using namespace std;
int main(){
int inVal;
cin >> inVal;
if (/* Your code goes here */){
cout << "More than -30"<< endl;
}
else {
cout <<"-30 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!