Hi guys im having trouble figuring out how to complete this assignment
Use Notepad to create an input file with the following input data for this program: .01 36 10000 (which is the monthly interest rate, number of payments, and the amount of the loan).
Send all output (formatted as shown in your text) to an output file. Format the output using the appropriate manipulators and/or member functions.
Step 3) You now need to output this information that you stored, to a second file. Once again, you'll use <fstream> for this.
Note: You can use one fstream object for both writing and reading from a file, but if you have no experience with it I would recommend using an ifstream (input file) object for the reading, and an ofstream (output file) object for writing to the file.
This should be enough information to get you started.