Question: 2. As few coins as possible, please! Please use Python!!!! Suppose that a cashier owes a customer some change and that the cashier only has
2. As few coins as possible, please!
Please use Python!!!!
Suppose that a cashier owes a customer some change and that the cashier only has quarters, dimes, nickels, and pennies. Write a program then computes the minimum number of coins that cashier can return. To solve this problem using the greedy algorithm explained below. PROBLEM STATEMENT: Your program should first ask the user for the amount of money he/she is owed (in dollars). You may assume that the user will enter a positive number. It should then print the minimum number of coins with which said amount can be made. Assume that the only coins available are quarters (25 cents), dimes (10 cents), nickels (5 cents), and pennies (1 cent).
EXAMPLES: If cashier owes 56 cents (i.e. $0.56) to the customer, the minimum number of coins the cashier can return is 4 (in particular, 2 quarters, 0 dimes, 1 nickel, and 1 penny. It is not possible to return 3 or fewer coins). If cashier owes $1.42 to the customer, the minimum number of coins the customer can return is 9 (in particular 5 quarters, 1 dime, 1 nickel, and 2 cents).
Thus your program runs will look like this, for different runs:
Enter the amount you are owed in $: 0.56 The minimum number of coins the cashier can return is: 4
Enter the amount you are owed in $: 1.42 The minimum number of coins the cashier can return is: 9
Enter the amount you are owed in $: 1.00 The minimum number of coins the cashier can return is: 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
