Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For this program you will write two methods. The first computes and returns the mean value for an array of doubles. The method header

 

For this program you will write two methods. The first computes and returns the mean value for an array of doubles. The method header for this method looks like this: public static double mean(double[ ] x); The second method computes and returns the standard deviation for a sample population. The method header for this method looks like this: public static double deviation (double[ ] x); The equation for the mean: mean=(x1+x2+x3+...+xn)n The equation for the Standard Deviation: Sx = -1(xi - n-1 nThe number of data points The mean of the Xi x) X Each of the values of the data Now write a main() method that does the following: 1. Tells the use what the program does. 2. Prompts the user to enter five numbers. 3. Saves the user's input in an array of doubles. 4. Uses the methods above to compute the mean and the standard deviation for the numbers in the array. 5. Displays the mean and the standard deviation with 2 digits after the decimal point. 6. Displays a goodbye message. 7. Your file should have the proper file prologue, and each method should have the proper method prologue. The following example show you what your program should look like when it runs (user input is green): This program computes the mean and the standard deviation for a set of numbers. Enter a number: 3.5 Enter a number: 4 Enter a number: 6.1 Enter a number: 6 Enter a number: 7.5 The mean of this set of numbers is 5.42 The standard deviation is 1.65 Goodbye

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Java An Introduction To Problem Solving And Programming

Authors: Walter Savitch

8th Edition

0134462033, 978-0134462035

More Books

Students also viewed these Programming questions

Question

Draw a Feynman diagram for the reaction n + v p + .

Answered: 1 week ago