thanks for over looking my code. I'm very new to programming and I really want to understand files. My knowledge of them is just the 40 pages of my text book that I read.
Basically, I'm curious why nothing besides "Processing Data" is being displayed. I'm very aware it's because it says cout. I'm wanting to know how I can get prompted to enter test scores for students. I want to be able to enter student data in my program and then it will return the average. I hope that makes sense and maybe you can help me, thank you!
That's easy. Just because all the words except "Processing Data" was written into outFile instead of cout. Words that is written into files won't be showen on screen.
Just change all outFile to cout. If you want to write them both into files and onto screen, insert them into a stringstream and insert it to both outFile and cout.