Question: Write a program that can be used to gather statistical data about the number of movies college students see in a month. The program should

Write a program that can be used to gather statistical data about the number of movies college students see in a month. The program should perform the following steps:

1)Ask the user how many students were surveyed (not less than zero).

2)An array of integers the size of the number of students should be dynamically allocated.

3)Allow the user to enter the number of movies each student saw into the array (between 0 and 100, inclusive).

4)Calculate the average of the values entered.

Display the result

Notes:

Whenever accessing dyn_array, use pointer notation in place of regular square array brackets.

Use the following skeleton for the main program:

int main() { int *dyn_array; int students; float avrg; do { cout << "How many students will you enter? "; cin >> students; }while ( students <= 0 ); dyn_array = create_array( students ); //this function creates a dynamic array //and returns its pointer enter_data( dyn_array, students ); //use 'pointer' notation in this function to //access array elements //accept only numbers 0-100 for movie seen avrg = find_average( dyn_array, students ); //use 'pointer' notation in this function to //access array elements cout << "The array is:" << endl << endl; show_array( dyn_array, students); cout << endl; cout << "The average is " << avrg << ". "; delete [] dyn_array; return 0; } 

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!