f=float(input("화씨를 입력하세요"))


c=5/9*(f-32)
#print("섭씨 온도는 "+str(c)+"입니다")
print("섭씨 온도는 %.2f 입니다"%c)
f2=c*9/5+32
#print("계산된 화씨 온도는 "+str(f2)+"입니다")
print("계산된 화씨 온도는 %.2f입니다"%f2)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: