Question: Create a Rainfall class that has the following: one instance field which is an a double array that contains rainfall amounts for 1 2 months
Create a Rainfall class that has the following:
one instance field which is an a double array that contains rainfall amounts for months
the constructor accepts the double array of rainfall amounts and copies it to the instance field
other methods which are in the chapter to:
totalRainfall that returns a double for the total rainfall for the months. There are no arguments.
avgRainfall that returns a double for the average rainfall for the months. There are no arguments.
mostRainfall that returns a double for the highest amount of rainfall for the months. There are no arguments.
leastRainfall that returns a double for the lowest amount of rainfall for the months. There are no arguments.
Your main method demo will create an instance of your Rainfall class passing in an array of doubles representing the rainfall amounts for months. You can ask the user for these amounts or provide them yourself. Then you will call each of the methods above and properly display the results to one decimal place.Rainfall Class
Write a RainFall class that stores the total rainfall for each of months into an array of doubles. The
program should have methods that return the following:
the total rainfall for the year
the average monthly rainfall
the month with the most rain
the month with the least rain
Demonstrate the class in a complete program.
Input Validation: Do not accept negative numbers for monthly rainfall figures.
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
