diff options
| author | prestonderek <[email protected]> | 2022-10-12 20:37:54 -0700 |
|---|---|---|
| committer | prestonderek <[email protected]> | 2022-10-12 20:37:54 -0700 |
| commit | 116fc793904665a30c279fccb7f80e68f5b9f000 (patch) | |
| tree | d2bfb46cacdecb3fa13a821122756032e4ecda19 | |
| parent | Commit for change to while loop (diff) | |
| download | cst116-chapter8-debugging-prestonderek-116fc793904665a30c279fccb7f80e68f5b9f000.tar.xz cst116-chapter8-debugging-prestonderek-116fc793904665a30c279fccb7f80e68f5b9f000.zip | |
Begin exersize 3.
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index 4d5b721..bc59f1d 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -54,6 +54,7 @@ //Finished debug 1. Removed ; from while loop. This still isn't working correctly though.
//Debug 2 ran to breakpoint and the while loop did not execute the cout statement.
//Changed while loop to be i<10.
+//Ran the program at start of Exersize 3 and it's infinite 0's!!!
#include <iostream>
using std::cout;
|