Answer:
Replace /* Your solution goes here */
with: userAge<18
Step-by-step 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