Answer :
Answer:
Replace /* Your solution goes here */
with: userAge<18
Explanation:
Required
Complete the code
To complete the code, we simply write an expression that compares userAge and 18
From the question, we are to test if userAge is less than 18.
In C++, less than is written as: <
So, the expression that completes the code is: userAge<18