Note
[codeup] 107. 섭씨 온도를 화씨 온도로 변환 본문
728x90
c = int(input())
f = 9/5*c+32
print("{:.3f}".format(f))
'etc > Coding Test' 카테고리의 다른 글
[codeup] 109. 관계연산자 1 (0) | 2022.01.08 |
---|---|
[codeup] 108. 8진수 16진수 변환 (0) | 2022.01.07 |
[codeup] 106. 초를 분/초로 변환 (0) | 2022.01.05 |
[codeup] 105. 삼각형의 넓이 구하기 (0) | 2022.01.04 |
[codeup] 104. 두 실수의 곱 (0) | 2022.01.03 |
Comments