aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch6-Debugging/CST116-CH6-Cyrus-pseudo-code
blob: 43cc35d6e21a40be0716b3ce7ab6f2dd8b3204f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
create variables for fahrenheit and celcius and set them to 0;

print a message requesting user input a temp in degrees F;
store user input to fahrenheit variable;

convert fahrenheit var to celcius and store in celcius var;

print out degrees F and degrees C with respective variables and create a new line;

end