Question #247681

Celsius (centigrade) temperature C can be converted to an equivalent fahrenheit temperature F according to the following formula: F = (9/5)C + 32

Write the algorithm that will read in a Celsius temperature and then output the equivalent fahrenheit temperature

Expert's answer

Start
   Declare variable C
   Declare variable F
   Read C from the keyboard
   F=(9/5)*C + 32
   Display F
Stop
LATEST TUTORIALS
APPROVED BY CLIENTS