diff options
| author | Tim Pearse <[email protected]> | 2022-10-01 13:10:47 -0700 |
|---|---|---|
| committer | Tim Pearse <[email protected]> | 2022-10-01 13:10:47 -0700 |
| commit | cdac3a2b668d5083f732b91476bf6d48089e15c4 (patch) | |
| tree | b1067f7f806b6dbff0505ff2ddc70d4326e65452 /Ch 5 Debugging Project/Ch 5 Debugging Project.cpp | |
| parent | Added a breakpoint to line 76. (diff) | |
| download | cst116-lab0-debugging-legokid1503-cdac3a2b668d5083f732b91476bf6d48089e15c4.tar.xz cst116-lab0-debugging-legokid1503-cdac3a2b668d5083f732b91476bf6d48089e15c4.zip | |
Added a breakpoint on line 76
Diffstat (limited to 'Ch 5 Debugging Project/Ch 5 Debugging Project.cpp')
| -rw-r--r-- | Ch 5 Debugging Project/Ch 5 Debugging Project.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp index 6545e9b..94c54e1 100644 --- a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp +++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp @@ -74,6 +74,7 @@ int main() // Breakpoint 1
// Put a breakpoint on the following line
cout << "Enter percent raise: ";
+
cin >> raise;
money = money * raise;
|