aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Traver <[email protected]>2022-10-10 19:30:05 -0700
committerJoe Traver <[email protected]>2022-10-10 19:30:05 -0700
commit1beb6aff5a7e5615b13c2eb9acce8f75cf19c20a (patch)
treec23b503f5624fd125e946a75c313e5a46679d44c
parentOutput txt file added (diff)
downloadcst116-ch6-debugging-joetraver30-1beb6aff5a7e5615b13c2eb9acce8f75cf19c20a.tar.xz
cst116-ch6-debugging-joetraver30-1beb6aff5a7e5615b13c2eb9acce8f75cf19c20a.zip
Added psudo code
-rw-r--r--CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-psudo-code.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-psudo-code.txt b/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-psudo-code.txt
new file mode 100644
index 0000000..594b9db
--- /dev/null
+++ b/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-psudo-code.txt
@@ -0,0 +1,17 @@
+int_var
+ fahrenheit = 0
+ celcius = 0
+
+display
+ "Enter temperature in fahrenheit"
+input_var
+ fahrenheit
+
+celcius to fahrenehit calculation
+ caelcuis = 5/9 * (fahrenheit - 32)
+
+display
+ output_var fahrenheit "degrees F ="
+ output_var celcous "degrees C"
+
+End \ No newline at end of file