222k views
5 votes
Write a program with total change amount as an integer input that outputs the change using the fewest coins, one coin type per line. The coin types are dollars, quarters, dimes, nickels, and pennies. Use singular and plural coin names as appropriate, like 1 penny vs. 2 pennies. Ex: If the input is: 0 or less, the output is: no change Ex: If the input is: 45 the output is: 1 quarter 2 dimes Your program must define and call the following function. Positions 0-4 of coinVals should contain the number of dollars, quarters, dimes, nickels, and pennies, respectively. void ExactChange(int userTotal, vector& coinVals) Note: This is a lab from a previous chapter that now requires the use of a function.

1 Answer

3 votes

Answer:

see explaination

Step-by-step explanation:

quarter = 25

dime = 10

nickel = 5

penny = 1

total_amount = int(input("enter an amount\\"))

if total_amount == 0:

print('No Change')

else:

Q = int (total_amount / quarter)

total_amount = total_amount % quarter

D = int (total_amount / dime)

total_amount = total_amount % dime

N = int (total_amount / nickel)

total_amount = total_amount % nickel

P = int (total_amount / penny)

print("your change will be\\",Q,'quarter\\',D,'dime\\',N,'nickel\\',P,'penny')

User MilkBottle
by
5.6k points