Question: . . . can someone help me with this coding assignment? How to Use the Code Editor Select the Run Code button to execute the

... can someone help me with this coding assignment?
How to Use the Code Editor
Select the "Run Code" button to execute the program.
Select the "Calculate Grade" button to generate a score based on the completed tasks.
Continue to modify, run, and calculate your code until you are happy with the grade.
Select the "Submit" button to turn in the assignment to your instructor.
Your Tasks
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.
Instructions
Task 1: Write the C++ statements as indicated by the comments.
An example of the program is shown below:
Enter a batting average: .299
Enter a batting average: .157
Enter a batting average: .242
Enter a batting average: .203
Enter a batting average: .198
Enter a batting average: .333
Enter a batting average: .270
Enter a batting average: .190
averages [0] is: 0.299
averages 1 is : 0.157
averages [2] is: 0.242
averages [3] is: 0.203
averages 4 is: 0.198
averages [5] is: 0.333
averages [6] is: 0.27
averages 7 is: 0.19
Minimum batting average is 0.157
Maximum betting average is 0.333
Average batting average is 0.2365
BattingAverage.cpp 1
BattingAverage.cpp >...
#include min=[];max=[0];
min = averages [];
max= averages ;
// Start out your total with the value of the first element in the array
total = averages ;
// 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 ;
}
 ... can someone help me with this coding assignment? How to

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!