Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started