From 9258c5c43b4a5693e56cedb01dc50a4b48cdcec8 Mon Sep 17 00:00:00 2001 From: tafaar <109928737+tafaar@users.noreply.github.com> Date: Wed, 5 Oct 2022 14:33:48 -0700 Subject: Rename Ch 5 Debugging - Hill to Ch 5 Debugging-Hill-Flowchart --- CST116-Ch6-Debugging/Ch 5 Debugging-Hill-Flowchart | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CST116-Ch6-Debugging/Ch 5 Debugging-Hill-Flowchart (limited to 'CST116-Ch6-Debugging/Ch 5 Debugging-Hill-Flowchart') diff --git a/CST116-Ch6-Debugging/Ch 5 Debugging-Hill-Flowchart b/CST116-Ch6-Debugging/Ch 5 Debugging-Hill-Flowchart new file mode 100644 index 0000000..77a9b5a --- /dev/null +++ b/CST116-Ch6-Debugging/Ch 5 Debugging-Hill-Flowchart @@ -0,0 +1,9 @@ +Enter temperature in Fahrenheit: 212 +212 degrees F = 100 degrees C + +1. fahrenheit = 0; +2. celcius = 0; +3. print "Enter temperature in Fahrenheit:"; +4. input fahrenheit; +5. celsius = 5.0F / 9.0F * (fahrenheit - 32); +6. print fahrenheit + " degrees F = " + celcius + " degrees C" \endline; -- cgit v1.2.3