diff options
| author | Birducken <[email protected]> | 2022-11-07 22:34:51 -0800 |
|---|---|---|
| committer | Birducken <[email protected]> | 2022-11-07 22:34:51 -0800 |
| commit | 8b9c7c7d6275cc4cc963cab13b163b88a5476c86 (patch) | |
| tree | cc39e5b57351998e228b272bef91af0fe6668375 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | |
| parent | Initial commit (diff) | |
| download | cst116-ch11-debugging-stark-8b9c7c7d6275cc4cc963cab13b163b88a5476c86.tar.xz cst116-ch11-debugging-stark-8b9c7c7d6275cc4cc963cab13b163b88a5476c86.zip | |
Finished exercise 1.
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index 53830da..e2e41ae 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -81,9 +81,9 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\TEMP\\Chap_11_Report.txt"); + ofstream outFile("report.txt"); - inFile.open("C:\\TEMP\\Chap_11_data.txt"); + inFile.open("data.txt"); if (inFile.is_open()) { @@ -112,15 +112,12 @@ int main() int ReadData(ifstream& inFile, ofstream& outFile, char name[][MAX], int age[]) { int counter = 0; - inFile >> name[counter] >> age[counter]; // Priming Read while (!inFile.eof()) { - cout << setiosflags(ios::left) << setw(25) - << name[counter] << resetiosflags(ios::left) - << setw(4) << age[counter] << endl; - counter++; inFile >> name[counter] >> age[counter]; + cout << setiosflags(ios::left) << setw(25) << name[counter] << resetiosflags(ios::left) << setw(4) << age[counter] << endl; + counter++; } return counter; @@ -128,7 +125,7 @@ int ReadData(ifstream& inFile, ofstream& outFile, char name[][MAX], int age[]) void WriteOutputFile(ofstream& outFile, char name[][MAX], int age[], int counter) { outFile << " Here is the Output File" << endl; - for (int r = 0; r <= counter; r++) + for (int r = 0; r < counter; r++) { outFile << setiosflags(ios::left) << setw(25) << name[r] << setw(4) |