본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#366 백준 파이썬 [10179] 쿠폰

https://www.acmicpc.net/problem/10179

 

PYTHON CODE

for _ in range(int(input())):
    print("$%.02f" % round(float(input()) * 0.8, 2))