Question: The following Java assignment: You will write a Java program that uses a twodimensional array to store the highest and lowest temperatures for each month
The following Java assignment:
You will write a Java program that uses a twodimensional array to store the highest and lowest temperatures for each month of the year. The program should output the average high, average low, and highest and lowest temperatures of the year. Your program must consist of the following methods (with appropriate parameters):
Method getData: This method reads and store the data in the two-dimensional array.
Method averageHigh: This method calculate and returns the average high temperature of the year.
Method averageLow: This method calculate and returns the average low temperature of the year.
Method indexHighTemp: This method returns the index of the highest temperature in the array.
Method indexLowTemp: This method returns the index of the lowest temperature in the array.
And, it should include the following data below to test your program:
| High Data | Low Data |
|---|---|
| 30 | 10 |
| 40 | -10 |
| 45 | 20 |
| 60 | 30 |
| 70 | 50 |
| 90 | 75 |
| 89 | 85 |
| 95 | 79 |
| 79 | 50 |
| 90 | 80 |
| 70 | 30 |
| 40 | 20 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
