What are the differences between a while loop and a do-while loop? Convert the following while loop into a do-while loop.
int sum = 0 ; int number; cin >> number; while (number != 0){ sum += number; cin >> number;}
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.