Show what the program segment would display on the screen. int count = 5;

while (count > 2)

{

cout << count << endl;

--count;

}

cout << count << endl;

Solved
Show answers

Ask an AI advisor a question