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: Ask the user how many students were surveyed (not less than zero). An array of integers the size of the number of students should be dynamically allocated. Allow the user to enter the number of movies each student saw into the array (between 0 and 100, inclusive). 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: For copy and paste
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;
}
Don't forget to block-comment every function definition.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
