본문 바로가기
python-algorithm

[백준] 4714

by 무적김두칠 2021. 3. 16.

1
2
3
4
5
while 1:
    n=float(input())
    if n<0: break
    else:
        print("Objects weighing %.2f on Earth will weigh %.2f on the moon."%(n,n*0.167))
cs
반응형

'python-algorithm' 카테고리의 다른 글

[백준] 4909  (0) 2021.03.16
[백준] 4758  (0) 2021.03.16
[백준] 4635  (0) 2021.03.12
[백준] 20976  (0) 2021.03.12
[백준] 20673  (0) 2021.03.12

댓글