Question: please help me write this code C++ thank u! Due date: Saturday, 18 March 2023, 11:59 PM Requested files: meanSD.cpp ( Download) Type of work:
Due date: Saturday, 18 March 2023, 11:59 PM Requested files: meanSD.cpp ( Download) Type of work: individual work Write a program that takes as input five numbers and outputs the mean (average) and standard deviation (with 2 deciaml point precision) of the numbers. If the numbers are 1,2,3,4, and 5, then the mean is 2x=(x1+x2+x3+x4+x5)/5 and the standard deviation is: Ess=sert((x1x)2+(x2x)2+(x3x)2+(x4x)2+(x5x)2)/5) Hints: Your program may contain following functions: a function that calculates and returns the mean and a function that calculates and returns the standard deviation. You may include anc set the number of decimal points to be printed. Go to https://stackoverflow.com/questions/5907031/printing-the-correct-number-ofdecimal-points-with-cout for more details: Example . Input .. 1.02.03.04.05.0 Program outbut
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
