diff options
| author | Morgan Cyrus <[email protected]> | 2022-10-12 21:47:12 -0700 |
|---|---|---|
| committer | Morgan Cyrus <[email protected]> | 2022-10-12 21:47:12 -0700 |
| commit | 7f8c694907454a988311eb122e35c19c0876003e (patch) | |
| tree | 6516b4a6708fcc989c9067e481b8586435be0113 /CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | |
| parent | Finished all exercises (diff) | |
| download | cst116-chapter8-cyrus-main.tar.xz cst116-chapter8-cyrus-main.zip | |
Diffstat (limited to 'CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp')
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index e24d5b8..e08c018 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -38,10 +38,10 @@ * done
* set the while loop to:
* while (i <= 0)
- {
- cout << i << endl;
- }
-
+* {
+* cout << i << endl;
+* }
+*
* This resolves the issue and the while loop executes.
*
* 10) Stop debugging.
|