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
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
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
