Question: In this lab, you complete a partially pre - written C + + program that uses a array. The program prompts the user to interactively

In this lab, you complete a partially pre-written C++ program that uses a array. The program prompts the user to interactively enter eight batting averages, which the program stores in a array. It should then find the minimum and maximum batting averages stored in the array, as well as the average of the eight batting averages. The data file provided for this lab includes the input statement and some variable initializations. Comments are included in the file to help you write the remainder of the program.
#include
#include
using namespace std;
int main()
{
// Declare a named constant for array size here
// Declare array here
// Use this variable to store the batting average input by user
double battingAverage;
// Use these variables to store the minimum and maximum values
double min, max;
// Use these variables to store the total and the average
double total, average;
// Write a loop to get batting averages from user and assign to array
cout << "Enter a batting average: ";
cin >> battingAverage;
// Assign value to array
// Assign the first element in the array to be the minimum and the maximum
min = averages[0];
max = averages[0];
// Start out your total with the value of the first element in the array
total = averages[0];
// Write a loop here to access array values starting with averages[1]
// Within the loop test for minimum and maximum averages.
// Also accumulate a total of all averages
// Calculate the average of the 10 batting averages
// Print the batting averages stored in the averages array
// Print the maximum batting average, minimum batting average, and average batting average
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 Programming Questions!