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 pre-written 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 main(String 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.showInputDialog("Enter a batting average: ");
battingAverage = Double.parseDouble(averageString);
// 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 batting averages.
// Also accumulate a total of all batting averages.
// Calculate the average of the 8 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: .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 batting average is 0.333
Average batting average is 0.2365

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!