지나가던 개발자

[Python] 백준 10179번(쿠폰) 문제 풀이 본문

PS/Python

[Python] 백준 10179번(쿠폰) 문제 풀이

KwonYongHyeon 2022. 2. 1. 12:21

 

 어떤 물건이라도 20%씩 할인된다니... 나도 가지고 싶다.

 

test_case = []
for i in range(int(input())):
    test_case.append(float(input()))
for test in test_case:
    print("$" + format(round(test * (80/100), 2), ".2f"))

 

 간단한 문제였다.

Comments