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

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 Programming Questions!