Computer Science, asked by Najmatabassumjnv22, 9 months ago

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 da4729204
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