Problem

(Practice) Rewrite Program to display the following prompt: Please type in the total numbe...

(Practice) Rewrite Program to display the following prompt: Please type in the total number of data values to be averaged:

In response to this prompt, the program should accept a user-entered number, and then use this number to control the number of times the while loop is executed. So if the user enters 6 in response to the prompt, the program should request input of six numbers and display the average of the next six numbers entered.

Program:

#include #include using namespace std;int main( ){const int MAXNUMS = 4;int count;double num, total, average;cout << "\nThis program will ask you to enter "<< MAXNUMS << " numbers.\n";count = 1;total = 0;while (count <= MAXNUMS){cout << "Enter a number: ";cin >> num;total = total + num;count++;}count--;average = total / count;cout << "\nThe average of the numbers is " << average << endl;return 0;}

Step-by-Step Solution

Request Professional Solution

Request Solution!

We need at least 10 more requests to produce the solution.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the solution will be notified once they are available.
Add your Solution
Textbook Solutions and Answers Search
Solutions For Problems in Chapter 5.2