diff options
| author | DaBoochillin <[email protected]> | 2022-10-03 20:03:10 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-03 20:03:10 -0700 |
| commit | cc7a59c369cd9a6da16b1541747f2f20d8f4fb0a (patch) | |
| tree | 3062bc251f3f002c8755776481d170cb6fa77ae7 | |
| parent | Txt File Added (diff) | |
| download | cst116-ch6-debugging-trevor-bouchillon-main.tar.xz cst116-ch6-debugging-trevor-bouchillon-main.zip | |
| -rw-r--r-- | Debugging 6 - Pseudocode.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Debugging 6 - Pseudocode.txt b/Debugging 6 - Pseudocode.txt new file mode 100644 index 0000000..6af40bd --- /dev/null +++ b/Debugging 6 - Pseudocode.txt @@ -0,0 +1,8 @@ +Set value of variable fahrenheit to 0
+set value of variable celcius to 0
+
+print out "Enter temperature in Fahrenheit
+Intake value for variable fahrenheit
+
+Define variable celcius by dividing 5 by 9 then multipling by variable fahrenheit minus 32
+print out variable fahrenheit, "degrees F =", variable celcius, " degrees C"
|