Question: Need flowchart for the following program. 1. Write a complete C++ program that calculates Standard Deviation using data from input file called: grades.txt. 2. Use
Need flowchart for the following program.
1. Write a complete C++ program that calculates Standard Deviation using data from input file called: grades.txt.
2. Use data in the example above to populate the data file: grades.txt
3. Output the average and the standard deviation to an external file called: results.txt.
4. Hints: The sqrt function is located in the cmath library. Use casting where necessary.
5. Hints: Utilize dowhile or while loop in conjunction with file I/O.
6. Increase your program modularity by implementing functions so the main contains only function calls.
path of the file D:\\grades.txt)
9 2 5 4 12 7 8 11 9 3 7 4 12 5 4 10 9 6 9 4
_______________
Program:
#include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
