728x90
반응형
단순 구현 문제이다.
while 1:
w = float(input())
if w == -1:
break
print("Objects weighing %.2f on Earth will weigh %.2f on the moon." % (w, w*0.167))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 4766번 일반 화학 실험(python) (0) | 2021.02.13 |
---|---|
백준 알고리즘 4758번 Filling Out the Team(python) (0) | 2021.02.13 |
백준 알고리즘 4690번 완전 세제곱(python) (0) | 2021.02.13 |
백준 알고리즘 4655번 Hangover(python) (0) | 2021.02.13 |
백준 알고리즘 4635번 Speed Limit(python) (0) | 2021.02.13 |