본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]9317번 Monitor DPI

by 현장 2021. 4. 25.

-코드

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