Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a C++ program that uses a structure to store the following weather data for a particular month: total rainfall Average Monthly Rain: The average
Write a C++ program that uses a structure to store the following weather data for a particular month:
- 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).
The output should look like this.
C:\Users\davyn\Documents\courses_troy\l_2013\C++\Homework\student_work\Debug\week3_sa... Enter the following information: Month 1 Total Rainfall: 12 High Temperature: 12 Low Temperature: 12 Month 2 Total Rainfall: 12 High Tenperature: 12 Low Temperature: 12 Month 3 Total Rainfall: 12 High Temperature: 12 Low Temperature: 12 Month 4 Total Rainfall: 12 High Tenperature: 12 Low Temperature: 12 Month 5 Total Rainfall: 12 High Temperature: 12 Low Temperature: 12 Month 6 Total Rainfall: 12 High Temperature: 12 Low Temperature: 12 O C:\Users\davyn\Documents\courses troy\l_2013\C++\Homework student_work\Debug\week3_sa... Month? Total Rainfall: 12 High Temperature: 12 Low Temperature: 12 Month 8 Total Rainfall: 12 High Temperature: 12 Low Temperature: 12 Month 9 Total Rainfall: 12 High Temperature: 12 Low Temperature: 12 Month 19 Total Rainfall: 12 High Temperature: 12 Low Temperature: 12 Month 11 Total Rainfall: 12 High Temperature: 12 Low Temperature: 12 Month 12 Total Rainfall: 12 High Temperature: 12 Low Temperature: 12 Total Rainfall: 144 Average Monthly Rain: 12 Average Monthly Average Temperature: 12 Highest Temperature: 12Step 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