Question
Rainfall Statistics Write a program that lets the user enter the total rainfall for each of 12 months into an array of doubles. The program
Rainfall Statistics
Write a program that lets the user enter the total rainfall for each of 12 months into an array of doubles. The program should calculate and display the total rainfall for the year, the average monthly rainfall, and the months with the highest and lowest amounts.
Input Validation: Do not accept negative numbers for monthly rainfall figures
Complete the following program with these changes please:
When you display the month with the highest rainfall and the month with the lowest rainfall, display the month names, like:
January had the smallest rainfall, with 2 inches.
April had the most rainfall, with 12 inches.
Hint: Define a parallel array of strings that contains the month names. Use the index that refers to the min (or max) value in rainfall to get the corresponding month name so that you can display the appropriate month.
Testing Hint: Get things working with, say, only 3 months so that each time you run it, you dont have to enter 12 numbers. Once youre confident things are working, expand it to all 12 months and ensure it still works.
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