Skip to main content
Program to Convert Celsius To Fahrenheit
- In this program we are taking the input from user, user enters
the temperature in Celsius and the program converts the entered value
into Fahrenheit using the conversion formula.
Formula : Celsius = (Fahrenheit – 32) * 5/9
Program to Convert Fahrenheit to Celsius
- In this program user enters the temperature in Fahrenheit
and the program converts the entered value into Celsius using the
Fahrenheit to Celsius conversion formula.
Formula : Fahrenheit = (Celsius * 9/5) + 32
Comments
Post a Comment