Question
I need writing this C++ code. Write a program that uses a structure to store the following weather data for a particular month: Total Rainfall
I need writing this C++ code.
Write a program that uses a structure to store the following weather data for a particular
month: Total Rainfall High Temperature Low Temperature Average Temperature The program should have an array of 12 structures to hold weather data for an entire year. When the program runs, it should ask the user to enter data for each month. (The average temperature should be calculated.) Once the data are entered for all the months, the program should calculate and display the average monthly rainfall, the total rainfall for the year, the highest and the lowest temperatures for the year (and the months they occurred in), and the average of all the monthly average temperatures.
The program should output :
- total rainfall
- Average Monthly Rain: The average monthly rain is total rain of 12 months then divided by 12.
- Average Monthly Average Temperature:
The monthly average Temp is (monthly high temp + monthly low temp)/2.
The average monthly average temp is to add all 12 months' monthly average Temp and then divided by 12.
- Highest Temp and Lowest Temp during the year and the months they occurred in.
Please use an array of 12 elements of the defined structure and loop to input the records. Also, note the temperature input validation in the question. (It is not required to validate highT >=LowT).
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