0
About While loop
can someone tell me what is the meaning of ( total += number; ) in this example : while (num <= 5) { cin >> number; total += number; num++;
2 Answers
+ 4
It means total is being increased by number.
short for writing:
total = total + (number)
0
Oh thank you man .