Question: I need help solving an expression, I am still very new to the concept of expression so I am having a difficult time solving this
I need help solving an expression, I am still very new to the concept of expression so I am having a difficult time solving this Lab simulation:
Solve an expression that prints "Eligible" if userAge is between 18 and 25 inclusive.
Ex: 17 prints "Ineligible", 18 prints "Eligible".
#include
using namespace std;
int main() {
int userAge;
userAge = 17;
if (/* Your solution goes here*/) {
cout << "Eligible" << endl;
}
else {
cout << "Ineligible" << endl;
}
return 0;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
