1.2.2: Output variable value. Jump to level 1 Write a statement that outputs variable userAge. End with a newline. 1 2 3 4 5 6 7 8 9 10 11 12 #include using namespace std; int main () { int userAge; cin >> userAge; / / Program will be tested with values: 15, 40. / * Your code goes here * / return 0; } 1 2 Check Next 1 2
+2
Answers (1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “1.2.2: Output variable value. Jump to level 1 Write a statement that outputs variable userAge. End with a newline. 1 2 3 4 5 6 7 8 9 10 11 ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.