Note

[codeup] 107. 섭씨 온도를 화씨 온도로 변환 본문

etc/Coding Test

[codeup] 107. 섭씨 온도를 화씨 온도로 변환

알 수 없는 사용자 2022. 1. 6. 17:57
728x90
c = int(input())
f = 9/5*c+32
print("{:.3f}".format(f))
Comments