Not sure how to start on the homework assignment.
Assignment:
Write a C++ program that accepts 5 integers from a user and then calculates their arithmetic mean, geometric mean, harmonic mean, and standard deviation (all statistics must be stored in doubles). The program should then print and label the original 5 numbers and the four statistics. You will need to include the math library (#include <cmath>) to use pow() and sqrt().
Your program must implement the following equations:
Arithmetic Mean
Geometric Mean
Harmonic Mean
Standard Deviation