diff options
| -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"
|