Ask your own question, for FREE!
Mathematics 8 Online
OpenStudy (anonymous):

am trying to write a c++ program that does the following: 1.reads five decimal numbers into a file "input.txt" 2.writes the five numbers from the file into an ouput file "output.txt" 3. calculates the sum of the five decimal numbers. 4. calculates the average of the five decimal numbers. 5. writes the sum and average into the file "output.txt" help this extremely urgent....i can do the calculations its just the i/o stuff,

OpenStudy (anonymous):

Lol wrong section - this is mathematics.... but ill help a bit anyway. Before I start, do you know for sure the file format is in decimals?

OpenStudy (anonymous):

and are you not worried about finding the wrong file oir anything?

OpenStudy (anonymous):

but if I were you, I'd do something along the lines of string name; // get file name ifstream ifs(name.c_str()); // do stuff (get ints out, do operations) string oname; ofstream ofs(oname.c_str(); // put ints in

OpenStudy (anonymous):

thanks but am even more confused..

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!