Ask Question

What will the following segment of code output if 11 is entered at the keyboard? int number; cin >> number; if (number > 0) cout << "C++"; else cout << "Soccer"; cout << " is "; cout << "fun" << endl;

+2
Answers (1)
  1. 29 January, 00:11
    0
    C+ + is fun will be the output segment.

    Explanation:

    The following are the description of the statement.

    In the given statement we declared a variable "number" of "int" type. Read there value by the user in the "number " variable. After that, there is if block since as mention in the question the value of the number variable is 11 so the if block condition is executed and print C+ + on the console. Finally, the rest of the statement is executed which is after the else block it means it print is fun is printed on the console.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “What will the following segment of code output if 11 is entered at the keyboard? int number; cin >> number; if (number > 0) cout ...” 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