Ask Question
11 July, 08:10

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

+3
Answers (1)
  1. 11 July, 11:38
    0
    cout<<"User Age is = "<
    Explanation:

    #include

    using namespace std;

    int main ()

    {

    int userAge;

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

    cout<<"User Age is = "<
    return 0;

    }
Know the Answer?
Not Sure About the Answer?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers