diff options
| author | prestonderek <[email protected]> | 2022-10-12 20:40:48 -0700 |
|---|---|---|
| committer | prestonderek <[email protected]> | 2022-10-12 20:40:48 -0700 |
| commit | d038e351f3f5fdc6a2aab637a9fb630ec45c3e8d (patch) | |
| tree | 0968aac5cfe9a1959cdbfce99f9f0ab4b3251e03 /CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | |
| parent | improved the cout statement in the while loop. (diff) | |
| download | cst116-chapter8-debugging-prestonderek-d038e351f3f5fdc6a2aab637a9fb630ec45c3e8d.tar.xz cst116-chapter8-debugging-prestonderek-d038e351f3f5fdc6a2aab637a9fb630ec45c3e8d.zip | |
ran code at end of exersize 3.
Diffstat (limited to 'CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp')
| -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 e716833..22e48f5 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -56,6 +56,7 @@ //Changed while loop to be i<10.
//Ran the program at start of Exersize 3 and it's infinite 0's!!!
//added a ++ to i in the cout statement after closing the infinite program.
+//ran to breakpoint 2 and the output is 0-9.
#include <iostream>
using std::cout;
|