aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch6-Debugging/CST116-Ch6-Debugging-Williams.txt
blob: f03d7d1e2d88da0a1b5c960ace091169a0636b33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Enter temperature in Fahrenheit: 212
212 degrees F = 100 degrees C

-----PSEUDOCODE-----
PROGRAM START
|
V
Define float variables for fahrenheit and celcius
|
V
Get a fahrenheit value from the user
|
V
Convert that value to celcius
|
V
Print the conversion to the console
|
V
PROGRAM END