CHALLENGE ACTIVITY A cashier distributes change using the maximum number of five-dollar bills, followed by one-dollar bi
Posted: Fri Jul 01, 2022 5:51 am
statement that assigns num ones with the number of distributed one-dollar bills given amount to change. Hint: Use %. 1.16.2: Compute change. Sample output with input: 19 Change for $ 19 3 five dollar bill(s) and 4 one dollar bill(s) 1 amount_to_change int(input()) 2 3 num fives - amount to change // 5 4 5 Your solution goes here *** 6 7 print('Change for $', amount_to_change) 8 print (num_fives, 'five dollar bill(s) and', num_ones, 'one dollar bill(s)') Run K DAD!! 1 test All tests passed Feedback
CHALLENGE ACTIVITY A cashier distributes change using the maximum number of five-dollar bills, followed by one-dollar bills. Write a single