aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ch 5 Debugging Project/Ch 5 Debugging Project.cpp12
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.command.1.tlogbin1918 -> 914 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.read.1.tlogbin41504 -> 21178 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.write.1.tlogbin1582 -> 700 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exebin53760 -> 53760 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilkbin522436 -> 540388 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.objbin83000 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdbbin1970176 -> 2043904 bytes
8 files changed, 9 insertions, 3 deletions
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp
index 295944d..04475bd 100644
--- a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp
+++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp
@@ -73,11 +73,17 @@ int main()
// Breakpoint 1
// Put a breakpoint on the following line
- cout << "Enter percent raise: "; //Inserted breakpoint for step 1.
+ cout << "Enter percent raise above 1.0%: "; //Inserted breakpoint for step 1. //Added a rule for the users entered value to stop the raise from being below 1.0%
cin >> raise;
- //Step 10 when you step over you get "You have $123.45. Enter percent raise:"
- money = money * raise;
+ while (raise <= 1.0)
+ {
+ cout << "You must enter a number greater than 1.0";
+ cin >> "Enter percent raise above 1.0%";
+ }
+ money = money * raise;
+ //Step 10 when you step over you get "You have $123.45. Enter percent raise:"
+ //setting raise to .1 makes the value after the calculation 12.345.
cout << "After your raise you have $";
cout << money << endl;
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.command.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.command.1.tlog
index 4e53ea1..1a0c11c 100644
--- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.command.1.tlog
+++ b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.command.1.tlog
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.read.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.read.1.tlog
index e982987..5e84124 100644
--- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.read.1.tlog
+++ b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.read.1.tlog
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.write.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.write.1.tlog
index d355d93..141dadd 100644
--- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.write.1.tlog
+++ b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.write.1.tlog
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe
index e9a21f6..390e77f 100644
--- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe
+++ b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk
index 63e72cf..380b030 100644
--- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk
+++ b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj
deleted file mode 100644
index 07e9686..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb
index fa93bcb..b138a81 100644
--- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb
+++ b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb
Binary files differ