algorithm step by steps procedure that converts a temperature value in Fahrenheit (F) to value in Celsius (C) using the following formula: C = (F -32) x (100/180)
Start
Declare variable Real F
Declare variable Real C
Print "Enter a temperature value in Fahrenheit (F): "
Input F
Set C = (F-32.0) *(100.0/180.0)
Print "A temperature value in Celsius is: ", C
Stop
Comments
Leave a comment