Ask 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 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. 4 May, 00:25
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers