Question: What number will the following code display on the computer screen? int sum = 0; int y = 0; do { for (int x =
What number will the following code display on the computer screen?
int sum = 0;
int y = 0;
do
{
for (int x = 1; x <= 5; x += 1)
sum += x;
//end for
y += 1;
} while (y < 2);
cout << sum << endl;
a. 5
b. 8
c. 15
d. 30
Step by Step Solution
3.41 Rating (173 Votes )
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
