diff options
| author | Taylor Rogers <[email protected]> | 2022-11-01 09:04:52 -0700 |
|---|---|---|
| committer | Taylor Rogers <[email protected]> | 2022-11-01 09:04:52 -0700 |
| commit | a9096bbbf3c328bda336d941bfa04ecee60a8105 (patch) | |
| tree | f4a60b791a8204366f79fc66cf99b4d779bf3cff | |
| parent | Added the Names.txt and changed filepath for report output (diff) | |
| download | cst116-ch11-debugging-taylorrog-a9096bbbf3c328bda336d941bfa04ecee60a8105.tar.xz cst116-ch11-debugging-taylorrog-a9096bbbf3c328bda336d941bfa04ecee60a8105.zip | |
Answered multiple Qs
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 9 | ||||
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj | 1 | ||||
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters | 1 |
3 files changed, 11 insertions, 0 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index 34c3b61..d559f50 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -25,10 +25,16 @@ * your program to your Project. Execute your program again * and notice how Visual Studio has rewritten your output file * and asks if you would like to reload the file (select Yes). +* +* It isn't asking me to reload, but I can see that the output changes if the input text file has different data... +* * 9) Examine the contents of both the input and the output file. * 10) Fix all the problems in your code that exist in relation to * the output. Verify that your output is appropriate for your input file. + + Everything seems to be working fine + * 11) Build and execute your code until you have all errors * removed and all the output is correct. * @@ -39,6 +45,9 @@ * (i.e., inFile.open("C:\TEMP\Chap_11_data.txt"). * 2) Build your code, noticing the impact of the invalid path you * created in the previous step. +* +* Breaks it +* * 3) Replace the backslashes as they were. * 4) Change both the input and output filenames so they are * invalid. diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj index 27b7841..4856308 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj @@ -130,6 +130,7 @@ <ClCompile Include="CST116-Ch11-Debugging.cpp" /> </ItemGroup> <ItemGroup> + <Text Include="..\..\..\..\..\Week_6\Chap_11_Report.txt" /> <Text Include="..\..\..\..\..\Week_6\Names.txt" /> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters index 05feb72..25f90f0 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters @@ -21,5 +21,6 @@ </ItemGroup> <ItemGroup> <Text Include="..\..\..\..\..\Week_6\Names.txt" /> + <Text Include="..\..\..\..\..\Week_6\Chap_11_Report.txt" /> </ItemGroup> </Project>
\ No newline at end of file |