WAP to obtain temperature in Celsius and convert it into Fahrenheit using formula. °C×9/5+32=°F

#celsius to fahrenheit 
Cels= float(input("Enter temp in Celsius:"))
Print(" Temperature in Celsius is:",Cels)
Fahr=Cels×9/5+32
Print("Temperature in Fahrenheit is:",Fahr)

Comments

Popular posts from this blog

program that reads two numbers and an arithmetic operator and displays the computed result.

program to find the multiples of a number ( the divisor) out of given five numbers.