Question: c++ Not Secure cs.uregina.ca While Loop Exercise: Get a copy of the program count.cpp. The count.cpp program demonstrates how to use a while loop. Complete

 c++ Not Secure cs.uregina.ca While Loop Exercise: Get a copy of
c++
the program count.cpp. The count.cpp program demonstrates how to use a while

Not Secure cs.uregina.ca While Loop Exercise: Get a copy of the program count.cpp. The count.cpp program demonstrates how to use a while loop. Complete the program by following the instructions in the comments. Compile and run the program. Use the the following input values to test your program: loop total: 5 five numbers to be added 3, -2, 0, 9, 1. Here is a sample output 5 hercules[1] CC count.cpp -O count hercules [2] count Please input the number of integers that you would like to add: Enter an integer value: 3 Enter an integer value: -2 Enter an integer value: 0 Enter an integer value: 9 Enter an integer value: 1 The sum of the 5 integers is 11 b. Copyright: Department of Computer Science, Iniversity of Regina. // Program Count prompts for the number of integers to sum. // It then reads the integers in a loop, summing them. // Finally, it prints the sum. #include using namespace std; int main() int sum = 0; int dataValue; // summing variable // input value // add an int declaration statement here for the loop counter 11 add an int declaration statement here for the loop total // add an assignment statement here to set the loop counter to 0 11 add a cout statement here to prompt the user how many numbers 11 he/she wants to add i.e. the loop total // add a cin statement here to get the loop total // add a while statement here to test the loop counter against the loop total e.g. while (loopctrlooptotal) Note: the variable names depend on how you declared them. Press return." > dataValue; sum = sum + dataValue; // add a statement here to increment your counter variable } // end of while loop cout

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!