From 5f12e7ae79d24de49843eb04627fd5c4ec6eed1c Mon Sep 17 00:00:00 2001 From: Andrei F Date: Wed, 12 Oct 2022 21:28:08 -0700 Subject: Forgot value 5 in pseudo code, fixed, last commit --- CST116-Ch6-Debugging/CST116-CH6-Florea-pseudo-code.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CST116-Ch6-Debugging/CST116-CH6-Florea-pseudo-code.txt b/CST116-Ch6-Debugging/CST116-CH6-Florea-pseudo-code.txt index 4622a61..4fc4954 100644 --- a/CST116-Ch6-Debugging/CST116-CH6-Florea-pseudo-code.txt +++ b/CST116-Ch6-Debugging/CST116-CH6-Florea-pseudo-code.txt @@ -4,6 +4,6 @@ define celsius and set it to 0 as a float display "Enter a temperature in Fahrenheit: " input value for fahrenheit -celsius = (float) / 9 * (fahrenheit - 32) +celsius = (float) 5 / 9 * (fahrenheit - 32) display fahrenheit + " degrees F = " + celsius + " degrees C" -- cgit v1.2.3