aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt
diff options
context:
space:
mode:
authorTrenton Stark <[email protected]>2022-10-12 20:43:44 -0700
committerTrenton Stark <[email protected]>2022-10-12 20:43:44 -0700
commit96a689c0fa4c77ce208c8f5d3851f2cdabc9fffd (patch)
treeb56fb9fc4e514e35247f6475700c8fd3a59f2172 /CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt
parentFinished (diff)
downloadcst116-ch6-debugging-stark-96a689c0fa4c77ce208c8f5d3851f2cdabc9fffd.tar.xz
cst116-ch6-debugging-stark-96a689c0fa4c77ce208c8f5d3851f2cdabc9fffd.zip
added psuedo code
Diffstat (limited to 'CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt')
-rw-r--r--CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt b/CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt
new file mode 100644
index 0000000..0a6607d
--- /dev/null
+++ b/CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt
@@ -0,0 +1,9 @@
+set fahrenheit to 0
+set celcius to 0
+
+print "Enter tempeartue in Fahrenheit: "
+input into fahrenheit
+
+set celcius = 5 / 9 * (fahrenheit - 32)
+
+print fahrenheit + " degrees F = " + celcius + " degrees C" \ No newline at end of file