aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch6-Debugging/cst116-ch6-debugging-flowchart.txt
blob: 31a1caeb205a5ac8fa33ee279771261db3dd9625 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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