지나가던 개발자
[Python] 백준 10179번(쿠폰) 문제 풀이 본문
어떤 물건이라도 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"))
간단한 문제였다.
'PS > Python' 카테고리의 다른 글
[Python] 백준 14928번(큰 수 (BIG)) 문제 풀이 (0) | 2022.02.01 |
---|---|
[Python] 백준 5338번(마이크로소프트 로고) 문제 풀이 (0) | 2022.02.01 |
[Python] 백준 7287번(등록) 문제 풀이 (0) | 2022.01.27 |
[Python] 백준 10170번(NFC West vs North) 문제 풀이 (0) | 2022.01.26 |
[Python] 백준 2338번(긴자리 계산) 문제 풀이 (0) | 2022.01.26 |
Comments