​I am stuck trying to create a program in PYTHON that calculates the coins needed to make change for a specified US monetary amount.

​I am stuck trying to create a program in PYTHON that calculates the coins needed to make change for a specified US monetary amount.

I am stuck trying to create 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)

"You need a similar assignment done from scratch? Our qualified writers will help you with a guaranteed AI-free & plagiarism-free A+ quality paper, Confidentiality, Timely delivery & Livechat/phone Support.


Discount Code: CIPD30



Click ORDER NOW..

order custom paper