Design an algorithm to convert temperature in Celsius to Fahrenheit. (1o Celsius = 33.8o F )
Answers
Answered by
1
To convert the temperature form Celsius to Fahrenheit there are two ways:
1. multiply the Celsius by 1.8 (or 9/5) and add 32 one will get Fahrenheit.
2. subtract 32 from Celsius and multiply by .5556 (or 5/9).
Explanation:
Step1 : Start
Step2 : Read the input of temperature in Celsius (say C)
Step3 : F=(9*C)/5+32
Step4 : Print temperature in fahrenheit is F
Step5 : Stop
Similar questions