Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 :

  1. total rainfall
  2. Average Monthly Rain: The average monthly rain is total rain of 12 months then divided by 12.
  3. 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.

  1. 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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Security

Authors: Alfred Basta, Melissa Zgola

1st Edition

1435453905, 978-1435453906

More Books

Students also viewed these Databases questions

Question

ASAP ANSWER PLEASE!!!...

Answered: 1 week ago