From af0d02a60cd8a714cbca4526835951f2fb07fb6f Mon Sep 17 00:00:00 2001 From: Wyatt Date: Thu, 29 Sep 2022 16:06:18 -0700 Subject: finished --- CST116-Ch6-Debugging/cst116-ch6-debugging-flowchart.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CST116-Ch6-Debugging/cst116-ch6-debugging-flowchart.txt (limited to 'CST116-Ch6-Debugging/cst116-ch6-debugging-flowchart.txt') diff --git a/CST116-Ch6-Debugging/cst116-ch6-debugging-flowchart.txt b/CST116-Ch6-Debugging/cst116-ch6-debugging-flowchart.txt new file mode 100644 index 0000000..31a1cae --- /dev/null +++ b/CST116-Ch6-Debugging/cst116-ch6-debugging-flowchart.txt @@ -0,0 +1,11 @@ +Under main() +create fahrenheit and set to 0 +create celcius and set to 0 + +set fahrenheit to user input with query "Enter temperature in Fahrenheit: " + +set celcius to 5.0 / 9.0 * (fahrenheit - 32) + +output { fahrenheit + " degrees F = " + celsius + " degrees C" } + +return 0 \ No newline at end of file -- cgit v1.2.3