Write a program that reads a set of numbers from a data file (stabdard.dat) and count them? ?
-
Write a program that reads a set of numbers from a data file (standard.dat) and count them. Extensions: ·Write and call three value-returning functions to calculate the mean, variance, and standard deviation of the set of numbers. The standard deviation is the square root of the variance. ·Using notepad create a set of numbers to input and store them in a data file named standard.dat in your Data folder. ·Output the number of numbers in the file, the mean, variance and standard deviation in the main program.
-
Answer:
Please put some code together that is an attempt to perform this operation. Then come back and ask for help as to where there are problems. Or at least attempt to show the work you did, and then ask us to fix it. You will learn an immense amount more than you would if someone else did it for you. Hint: include <iostream> and use the "ifstream" functions: open(), getline(), eof(), close() http://www.cplusplus.com/reference/iostream/ifstream/ Secondary hint: Here's some C code to generate a random number of integers into a data file instead of you having to type them in: #include <stdio.h> #include <stdlib.h> #include <time.h> int main(int argc, char *argv[]) { srand(time(NULL)); FILE *fptr = fopen("mynumfile.txt", "w"); if (fptr != NULL) { char buf[20]; printf("How many random entries to you want to generate? "); fgets(buf, sizeof(buf)/sizeof(*buf), stdin); for (int n = 0; n < atol(buf); n++) fprintf(fptr, "%d\n", rand()); fclose(fptr); } return 0; }
Dominic A at Yahoo! Answers Visit the source
Related Q & A:
- How to write a program to monitor the temperature of CPU?Best solution by Stack Overflow
- Can I record a program/movie from a cable dvr to a DVD recorder?Best solution by Yahoo! Answers
- Is there a program or website that well make my brother a better reader?Best solution by Yahoo! Answers
- How to write a persuasive letter to a bank?Best solution by wikihow.com
- How to connect a video recorder to a set top box?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.