Question: You are to write a program that prompt user to enter a number greater than in a loop using the while loop control-structure. Each time

You are to write a program that prompt user to enter a number greater than in a loop using the while loop control-structure. Each time you are in the loop, keep a total (sum) of those numbers entered. When you enter o or a negative number, the loop terminates and then display the sum. Here is the pseudocode Set sum to 0 Set number to 0 Print "Enter a non-negative number (0 or negative to stop") Get number While number >= 0 sum = sum + number Print "Enter a non-negative number (0 or negative to stop) : " Get number End While Loop Print "The sum of all numbers is " + sum Now complete the C++ implementation of this pseudocode
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
