Write a program that reads numbers from cin and then sums them, stopping when 0 has been entered Note. Only use the while loop, not the do-while or for loops. Add the following to your program:
Refer to the following sample output as an example: Enter numbers, one per line. Enter 0 to end:
7
8
6
5
9
8
0
Thank you. The total was 48.
The total number of inputs read: 8
The total is less than 100