Sdev 140 design a program that let the user enter the


 Introduction to Software Development

Using only Flowgorithm program. Please do not answer if you do not know the answer or you are nor sure ....

I need only the Flowgorithm program.

Rainfall statistics.

Design a program that let the user enter the total rainfall for each of 12 months into an array.

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.

1) Create a Flowgorithm program as follows.

a. Include the usual comment lines for Author, Date and Description.

b. Declare a Real array for the rainfall amounts, with an array size of 12. Also, declare Real variables for total rainfall (and initialize it to 0), average rainfall, the highest amount of rainfall, and the lowest amount of rainfall.

c. Declare Integer variables for the array index, the month number of the highest rainfall, and the month number for the lowest rainfall, and initialize the last two to 0.

d. Create a For loop, with the index from 0 to 11, and inside the loop:

i. Prompt the user to enter the monthly rainfall amount, and store it in the correct array element. Your prompt should include the month number as 1 to 12 (so you need to display the month number + 1).

ii. Add the amount entered to the total rainfall amount.

iii. If the index is 0, you should set the highest and lowest rainfall amounts to the number entered, so that you have a reference for the other months.

iv. If the amount is greater than the current highest amount, reset the highest amount to the current amount, and set the month of highest rainfall to the current index. Likewise, if the amount is lower than the current lowest amount, reset the new lowest amount, and set the month of the lowest rainfall to the current index.

e. When the loop exits, compute the average by dividing the total rainfall amount by 12. Then display the total and average rainfall, the month number with the highest rainfall and that amount, and the month number with the lowest and that amount. NOTE: You do not have to NAME the months; the number of the months will do.

f. Run the program. The program should ask you to enter the amount of rainfall for 12 months. Then it displays the total and average rainfall, the highest month and its amount, and the lowest month and its amount. If there are any errors, recheck the instructions and correct them, then resave the file.

g. The screen shot below shows the last part of the Console window when the program was run with the amounts 30, 25, 20, 15, 10, 5, 60, 55, 50, 45, 40, 35. (Note that the index values were increased by 1 when displaying month numbers to the user.)

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: Sdev 140 design a program that let the user enter the
Reference No:- TGS02919160

Expected delivery within 24 Hours