Question: In this lab, you complete a partially pre - written Java program that uses a array. The program prompts the user to interactively enter eight
In this lab, you complete a partially prewritten Java 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.
import javax.swing.;
public class BattingAverage
public static void mainString args
Declare a named constant for array size here.
Declare array here.
Use this variable to store the batting average input by user.
double battingAverage;
String version of batting average input by user.
String averageString;
Use these variables to store the minimim and maximum batting averages.
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.
averageString JOptionPane.showInputDialogEnter a batting average: ;
battingAverage Double.parseDoubleaverageString;
Assign value to array.
Assign the first element in the array to be the minimum and the maximum.
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
Within the loop test for minimum and maximum batting averages.
Also accumulate a total of all batting averages.
Calculate the average of the averages.
Print the averages stored in the averages array.
Print the maximum batting average, minimum batting average, and average batting average.
Example Output:
Enter a batting average:
Enter a batting average:
Enter a batting average:
Enter a batting average:
Enter a batting average:
Enter a batting average:
Enter a batting average:
Enter a batting average:
averages is:
averages is:
averages is:
averages is:
averages is:
averages is:
averages is:
averages is:
Minimum batting average is
Maximum batting average is
Average batting average is
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
