Menu

(Solved) : Write Marie Program Calculate Basic Statistics List Positive Numbers Program Ask Users Inp Q44013523 . . .

Write a MARIE program to calculate some basic statistics on alist of positive numbers. The program will ask users to input thenumbers one by one. Assume that all numbers will be in the range 1to 1000. To terminate the data entry, user will input any negativenumber. Once the data entry is complete, the program will show fourstatistics about the list of numbers: (1) Count (2) Minimum value(3) Sum of numbers (4) “Mean/Average” calculation.

As an example, if the user enters the following decimal numbersas input (one after the other)

23, 6, 78, 36, 3, 250, 127, 210, –5

the program would output the following values as the count,minimum, sum and mean respectively:

8
3
733
91

The average is calculated by dividing sum by count. Note thatMARIE does not support floating point numbers, hence the result ofdivision will only have the integer part (as shown in aboveexample, average is 91 instead of 91.625)

Expert Answer


Answer to Write a MARIE program to calculate some basic statistics on a list of positive numbers. The program will ask users to in…

OR