Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 6: Decision-Making in Python!

Instruction

Condition Examples: Temperature Conversion Pseudocode

Function Main

Declare String choice
Assign choice = GetChoice()

If Choice = "C" Or Choice = "c"
   Call ProcessCelsius()
Else
   If Choice = "F" Or Choice = "f"
      Call ProcessFahrenheit()
   Else
      Output "You must enter C to convert to Celsius or F to convert to Fahrenheit!"
   End If
End If
End Function

Function CalculateCelsius (Real fahrenheit)

...