diff options
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index f590282..ea64379 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -1,3 +1,6 @@ +//Lab 3 +//Trevor Bouchillon + #include <iostream> #include <fstream> // For the files!!!! #include <iomanip> // For manipulators & formatting options @@ -14,8 +17,8 @@ using std::ofstream; const int EMPLOYEES = 20; const int MAX = 21; -string OutFileName = "C:\\TEMP\\Chap_11_ReportOut.txt"; -string InFileName = "C:\\TEMP\\Chap_11_Report.txt"; +string OutFileName = "C:\\TEMP\\smallOut.txt"; +string InFileName = "C:\\TEMP\\small.txt"; int ReadData(ifstream& inFile, ofstream& outFile, char name[][MAX], int age[]); void WriteOutputFile(ofstream& outFile, char name[][MAX], int age[], int counter); |