-코드
import math
while 1:
d, rh, rn = map(float, input().split())
if d == rh == rn == 0:
break
w = 16 * d / math.sqrt(337)
h = w * 9 / 16
print("Horizontal DPI: %.2f" % (rh/w))
print("Vertical DPI: %.2f" % (rn/h))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[프로그래머스/파이썬] 체육복 (0) | 2021.04.25 |
---|---|
[백준/파이썬]20944번 팰린드롬 척화비 (0) | 2021.04.25 |
[백준/파이썬]15151번 Incomplete Book (0) | 2021.04.25 |
[백준/파이썬]21354번 Äpplen och päron (0) | 2021.04.25 |
[백준/파이썬]21591번 Laptop Sticker (0) | 2021.04.25 |