Q19. 다음은 물건가격, 구매개수, 지불금액을 입력 받아 거스름돈을 계산하는 프로그램이다. 빈 칸을 채워 프로그램을 완성하시오. (100점)
_______ = int(input('물건 가격 : '))
num = int(input('구매 개수 : '))
_______ = int(input('지불 금액 : '))
_______ = pay - price * num
_______('물건 가격 : %d, 구매 개수 : ___, 지불 금액 : %d => 거스름 돈 : %d ' % (price, ______, pay, change))
- 난이도(1~10) : 1
- 힌트 : 없음
- - 실행 결과
-
물건 가격 : 5000
구매 개수 : 3
지불 금액 : 20000
물건 가격 : 5000, 구매 개수 : 3, 지불 금액 : 20000 => 거스름 돈 : 5000
price = int(input('물건 가격 : '))
num = int(input('구매 개수 : '))
pay = int(input('지불 금액 : '))
change = pay - price * num
print('물건 가격 : %d, 구매 개수 : %d, 지불 금액 : %d => 거스름 돈 : %d ' % (price, num, pay, change))