728x90
반응형
단순 사칙연산 문제이다.
t1 = float(input())
while 1:
t2 = float(input())
if t2 == 999:
break
print("%.2f" % (t2-t1))
t1 = t2
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 4892번 숫자 맞추기 게임(python) (0) | 2021.02.13 |
---|---|
백준 알고리즘 4880번 다음수(python) (0) | 2021.02.13 |
백준 알고리즘 4758번 Filling Out the Team(python) (0) | 2021.02.13 |
백준 알고리즘 4714번 Lunacy(python) (0) | 2021.02.13 |
백준 알고리즘 4690번 완전 세제곱(python) (0) | 2021.02.13 |