Design and write a program that will

  

definition: Design and write a program that will store the rainfall for each of 12 months. The program should then calculate: 

– the total rainfall for the year; 

– the average rainfall for the year; 

– the month with the most rain; 

– the month with the least rain. 

 A. Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. 

This program will have multiple elements that needs to be fulfilled starting with how are we going to get the amount of rainfall data. For this first issue we will ask the user for their input and store it in a 2-diamentinal array (first part will be for the month second part will be for rainfall). This array will be one of the most important aspects of our program simply because it will hold the most important information in it and it will be called in all of our functions. My idea is to use multiple functions with our main array and use “for loops” to calculate all of our desired information. We are going to need a total of four functions to get our average rainfall, total rainfall, highest rainfall month and lowest rainfall month as well

 
 

Finally, we will display all our information for our users to see. Since this is a basic program in the future it could be built out to a web interface with dynamic updating information on cities weather patterns. That would be a great idea for college students studying meteorology, there could be many uses for a program like this. 

Next, we will set up our functions and variables for our calculations I will outline them all below:

 First I will have our users input information to build our 2-diamentional array month_data[12,2] (Month and rainfall) this array will be used in the following function to calculate average, total, highest and lowest rainfall. 

Functions will be (NOTE: I am using the same variable names for all the functions since they will be declared inside of each of their own functions they will be local to that specific function. This way we will not be writing over existing information!):

Average_Rain 

· This will be the function that calculates average rain results 

· It will have the array month_data[12,2] and variables count (used to help calculate our average by holding the data that calculated adding up all 12 months rainfall), the number 12 (second aspect to work our average out), ave_month and x (our placeholder) 

· We will use a for loop to execute our results and the calculation of amount of rainfall per month (integer of 12) added up and the divided by 12 ( count / 12 = ave_month) 

· Our expected output will be a written statement displaying the month and average rainfall

 – Total_rain 

· This will be the function that calculates total rain results 

· It will have the array month_data[12,2] and variables in it counter, total_month and x for our placeholder 

· We will use a for loop to execute our results and the calculation of each months results added up all together 

· Our expected output will be a written statement displaying month and the total rainfall 

Less_rain 

· This will be the function that calculates the month with the least rain 

· It will have the array month_data[12,2] and variables counter, less_month and x for our placeholder 

· We will use a for loop to execute our results, we will have to sort our array from lowest to highest then give our first value from the array (less_month[0]) 

· Our expected output will be a written statement displaying the month with the least rainfall 

Most_rain

· This will be the function that calculates the month with the most rain. 

· It will have the array month_data[12,2] and variables counter, most_month and x for our placeholder  

· We will use a for loop to execute our results; again we will have to sort our array and this time we will use the last result because it will be the largest (most_month[11])

· Our expected output will be a written statement displaying month with the highest the highest rainfall 

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more