What will the following program segment display?
int addOn = 0, subTotal = 0;
while (addOn < 5)
{
addOn++;
if (addOn == 3)
continue;
subTotal += addOn;
cout << subTotal << " ";
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.