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

Respuesta :

Answer:

cout<<"User Age is ="<<userAge<<endl;

Explanation:

#include<iostream>

using namespace std;

int main()

{

int userAge;

cin >> userAge; // Program will be tested with values: 15, 40.

cout<<"User Age is ="<<userAge<<endl;

return 0;

}