From 596baf7619dffef2b27f9ff4cf673b9166e8170a Mon Sep 17 00:00:00 2001 From: Nathanturcas Date: Sun, 23 Oct 2022 15:22:33 -0700 Subject: commit 3 --- CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp') diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index 6f76146..4b86805 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -62,9 +62,9 @@ int main() // Breakpoint 1 // Put a breakpoint on the following line - while (i <= 10) + while (i < 10) - cout << i << endl; + cout << i++ << endl; -- cgit v1.2.3