-코드
from math import floor
while 1:
a, b, c, d = map(int, input().split())
if a == b == c == d == 0:
break
r = min(max(c, d) / max(a, b), min(c, d) / min(a, b))
if r >= 1:
print("100%")
else:
print(f"{floor(r * 100)}%")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬]13118번 뉴턴과 사과 (0) | 2021.04.28 |
---|---|
[백준/파이썬]6780번 Sumac Sequences (0) | 2021.04.28 |
[백준/파이썬]10773번 제로 (0) | 2021.04.27 |
[백준/파이썬]8295번 Rectangles (0) | 2021.04.27 |
[백준/파이썬]16625번 Das Blinkenlights (0) | 2021.04.27 |