From d58c82ca245453920e7acb917c121dac650e7763 Mon Sep 17 00:00:00 2001 From: Nathanturcas Date: Sun, 23 Oct 2022 15:18:53 -0700 Subject: commit 2 --- CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 7 +++++-- 1 file changed, 5 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 53e4a61..6f76146 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -62,8 +62,11 @@ int main() // Breakpoint 1 // Put a breakpoint on the following line - while (i < 0); - cout << i << endl; + while (i <= 10) + + cout << i << endl; + + // Breakpoint 2 // Put a breakpoint on the following line -- cgit v1.2.3