From fb730579b658b02474d622bfa3fcb31e31528c4a Mon Sep 17 00:00:00 2001 From: Joseph Williams Date: Wed, 5 Oct 2022 16:47:53 -0700 Subject: added pseudocode --- .../18baf636-7ce5-4c2b-8740-31d918fd404f.vsidx | Bin 11925 -> 0 bytes .../62d4eb93-74c7-4a40-a19b-694a62a5a914.vsidx | Bin 0 -> 12079 bytes .../8c36376c-381e-4985-9b6f-2ddaac554be6.vsidx | Bin 266 -> 0 bytes .../9ec83122-3216-4f85-a5ca-f1455a191475.vsidx | Bin 0 -> 1507 bytes .../.vs/CST116-Ch7-Debugging/v17/Browse.VC.db | Bin 16416768 -> 16416768 bytes .../CST116-Ch7-Debugging-Williams-PSEUDOCODE.txt | 7 +++++++ CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj | 1 + .../CST116-Ch7-Debugging.vcxproj.filters | 3 +++ 8 files changed, 11 insertions(+) delete mode 100644 CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/18baf636-7ce5-4c2b-8740-31d918fd404f.vsidx create mode 100644 CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/62d4eb93-74c7-4a40-a19b-694a62a5a914.vsidx delete mode 100644 CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/8c36376c-381e-4985-9b6f-2ddaac554be6.vsidx create mode 100644 CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/9ec83122-3216-4f85-a5ca-f1455a191475.vsidx create mode 100644 CST116-Ch7-Debugging/CST116-Ch7-Debugging-Williams-PSEUDOCODE.txt (limited to 'CST116-Ch7-Debugging') diff --git a/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/18baf636-7ce5-4c2b-8740-31d918fd404f.vsidx b/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/18baf636-7ce5-4c2b-8740-31d918fd404f.vsidx deleted file mode 100644 index 8f240fc..0000000 Binary files a/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/18baf636-7ce5-4c2b-8740-31d918fd404f.vsidx and /dev/null differ diff --git a/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/62d4eb93-74c7-4a40-a19b-694a62a5a914.vsidx b/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/62d4eb93-74c7-4a40-a19b-694a62a5a914.vsidx new file mode 100644 index 0000000..3468836 Binary files /dev/null and b/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/62d4eb93-74c7-4a40-a19b-694a62a5a914.vsidx differ diff --git a/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/8c36376c-381e-4985-9b6f-2ddaac554be6.vsidx b/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/8c36376c-381e-4985-9b6f-2ddaac554be6.vsidx deleted file mode 100644 index d400593..0000000 Binary files a/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/8c36376c-381e-4985-9b6f-2ddaac554be6.vsidx and /dev/null differ diff --git a/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/9ec83122-3216-4f85-a5ca-f1455a191475.vsidx b/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/9ec83122-3216-4f85-a5ca-f1455a191475.vsidx new file mode 100644 index 0000000..74c9c46 Binary files /dev/null and b/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/FileContentIndex/9ec83122-3216-4f85-a5ca-f1455a191475.vsidx differ diff --git a/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/v17/Browse.VC.db b/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/v17/Browse.VC.db index 4e623ac..377159b 100644 Binary files a/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/v17/Browse.VC.db and b/CST116-Ch7-Debugging/.vs/CST116-Ch7-Debugging/v17/Browse.VC.db differ diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging-Williams-PSEUDOCODE.txt b/CST116-Ch7-Debugging/CST116-Ch7-Debugging-Williams-PSEUDOCODE.txt new file mode 100644 index 0000000..5a1816d --- /dev/null +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging-Williams-PSEUDOCODE.txt @@ -0,0 +1,7 @@ +DISPLAY "Enter your age:" +SET age = INPUT +IF age is 1, DISPLAY "First Birthday" and stop +IF age is less than 12, DISPLAY "Child" and stop +IF age is between 12 and 19, DISPLAY "Teenager" and stop +IF age is more than 62, DISPLAY "Senior" +DISPLAY "Adult" and stop \ No newline at end of file diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj index aadabbf..be615e8 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj @@ -130,6 +130,7 @@ + diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters index b01a9d8..1f9803f 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters @@ -23,5 +23,8 @@ Source Files + + Source Files + \ No newline at end of file -- cgit v1.2.3