Question: I am stuck trying to make a program in PYTHON that calculates the coins needed to make change for a specified US monetary amount. Here
I am stuck trying to make a program in PYTHON that calculates the coins needed to make change for a specified US monetary amount.
Here is the code I have so far
# Module 3 Change Calculator
# Program is to take a given dollar amount, and convert it into coins
dollar_amount = 1 ##quarters = .25 ##dimes = .1 ##nickels = .5 ##pennies = 01
print("Enter dollar amount (for example, .56, 7.85): ") dollar_amount = input
if dollar_amount < 0:
print("Error, dollar amount must be positive.") else:
quarters = dollar_amount // 25
dimes = (dollar_amount % 25) // 10
nickels = dollar_amount % 25 % 10 // 5 pennies = dollar_amount % 5
print("The number of coins for ", dollar_amount, "dollars are: " print("Quarters: + , quarters")
print("Dimes:" +, dimes)
print("Nickels: " +, nickels)
print("Pennies: " +, pennies)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
