Problem

Visit www.myprogramminglab.com to complete select exercises online and get instant feedbac...

Visit www.myprogramminglab.com to complete select exercises online and get instant feedback.

Exercise

Write a program that takes its input from a text file of strings representing numbers of type double. The program outputs to the screen the average and standard deviation of the numbers in the file. The file contains nothing but strings representing numbers of type double, one per line. The standard deviation of a list of numbers n1, n2, n3 and so forth is defined as the square root of the average of the following numbers:

(n1 − a)2, (n2 − a)2, (n3 − a)2, and so forth.

The number a is the average of the numbers n1, n2, n3 and so forth. Hint: Write your program so that it first reads the entire file and computes the average of all the numbers, then closes the file, and then reopens the file and computes the standard deviation. You will find it helpful to first do Programming Project and then modify that program in order to obtain the program for this project.

Project

Visit www.myprogramminglab.com to complete select exercises online and get instant feedback.

Exercise

Write a program that takes its input from a text file of strings representing numbers of type double and outputs the average of the numbers in the file to the screen. The file contains nothing but strings representing numbers of type double, one per line.

Step-by-Step Solution

Request Professional Solution

Request Solution!

We need at least 10 more requests to produce the solution.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the solution will be notified once they are available.
Add your Solution
Textbook Solutions and Answers Search
Solutions For Problems in Chapter 10