From 9520fee2c53c3ec49ff6dbb296ec86523d0e35d4 Mon Sep 17 00:00:00 2001 From: Joe Traver Date: Mon, 10 Oct 2022 15:16:19 -0700 Subject: Added psudo code txt file --- .../CST116-Ch5 Debugging Psudo-Code.txt | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 CST116-Ch5-Debugging/CST116-Ch5 Debugging Psudo-Code.txt (limited to 'CST116-Ch5-Debugging/CST116-Ch5 Debugging Psudo-Code.txt') diff --git a/CST116-Ch5-Debugging/CST116-Ch5 Debugging Psudo-Code.txt b/CST116-Ch5-Debugging/CST116-Ch5 Debugging Psudo-Code.txt new file mode 100644 index 0000000..03dfbd8 --- /dev/null +++ b/CST116-Ch5-Debugging/CST116-Ch5 Debugging Psudo-Code.txt @@ -0,0 +1,26 @@ +print: + Joe Traver + CST 116 + Github ID - joetraver30 + +money = 123.45 + +print: + "you have $" +output = money + +prompt: + "Enter percent raise" +input = raise + + adendumn: + raise = raise * .01 + +money = money * raise + + adendumn: + money = money * (1+raise) + +print: + "After your raise you have $" + output = money -- cgit v1.2.3