Question: this should be done in C++ Overview Practice array and functions Objective Given a list of N integers, find its basic statistics (as in previous

 this should be done in C++ Overview Practice array and functions

this should be done in C++

Overview Practice array and functions Objective Given a list of N integers, find its basic statistics (as in previous exercise), root-mean-square and standard deviation. Your program will first ask for N, the number of integers in the list, which the user will input. Then the user will input N more numbers. You need to use an integer array to store all the numbers. You also need to use separate functions for each calculation. Note: Please consult wikipedia for root-mean-square and standard deviation. nput Format: Your program will loop on user inputs and print out the statistics until user stops by entering O integers. Output Format: Try your imagination More: Have you tried different way of getting the input numbers? What difference does it make if the numbers are floating point? tDo you use one function for each calculation, min), max), avg), rms), sd)? Can you do one function which does more than one calculations, such as statistics(avg, mean, sd)? >For those who are bored of array, what if all the numbers are stored in a file? Do you still need "count"? How about replace cin with file input

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!