HINT 9 - Pseudocode There are NO rules to psuedocode Write out how you will perform the task getting closer to code but not real code. Then scroll down to check your pseudocode against the one below. It doesn't have to be the same, just do the same things.
WARNING SPOILER ANSWER BELOW
PSEUDOCODE BELOW Begin program Declare variables TempFahrenheit and TempCentigrade TempCentigrade= Input box ("Please enter temperature in Centigrade and I will convert to Fahrenheit for you.") TempFahrenheit=TempCentigrade x 1.8 + 32 MsgBx (TempCentigrade) and " in Centigrade is " and (TempFahrenheit) and " in Fahrenheit." End program |
||