write a program that takes temperature in celcius as input and then converts it into Fahrenheit for output :
cel×9/5+32=Fahrenheit
Answers
Answered by
1
Answer:
# using python
temp_c = float(input("Enter temperature in degree celcius to convert it into Fahrenheit "))
temp_f = temp_c*9/5+32
print("Temperature in degree Fahrenheit is",temp_f)
Similar questions
Math,
4 months ago
CBSE BOARD X,
4 months ago
Math,
4 months ago
English,
9 months ago
Computer Science,
1 year ago
Math,
1 year ago