amount = int(input("How much does your item cost in cents?"))

amountOwed = 100 - amount
print(amountOwed//25, "quarters")
amountOwed = amountOwed % 25
print(amountOwed//10, "dimes")
amountOwed = amountOwed % 10
print(amountOwed//5, "nickels")
amountOwed = amountOwed % 5
print(amountOwed//1, "pennies")This unit included this program for making change:Which of the following would correctly modify the program so that the user can input the amount paid.Follow this link to try them out!(2 points)ResponsesAdd a line below line 1 and enter the following on it: amountPaid = int(input("How much did you pay in cents?")) , then change the 100 in the amountOwed calculation to amountPaid.Add a line below line 1 and enter the following on it: amountPaid = int(input("How much did you pay in cents?")) , then change the 100 in the amountOwed calculation to amountPaid.Remove 100 from line 2 and enter the following in its place: input("How much did you pay in cents?")Remove 100 from line 2 and enter the following in its place: input("How much did you pay in cents?")Add a line below line 1 and enter the following on it: amountPaid = input("How much did you pay in cents?") , then change the 100 in the amountOwed calculation to amountPaid.Add a line below line 1 and enter the following on it: amountPaid = input("How much did you pay in cents?") , then change the 100 in the amountOwed calculation to amountPaid.Add a line below line 1 and enter the following on it: amountPaid = 100, then change the 100 in the amountOwed calculation to amountPaid.Add a line below line 1 and enter the following on it: amountPaid = 100, then change the 100 in the amountOwed calculation to amountPaid.Question 2

1 answer

To modify the program so that the user can enter the amount paid, the correct response is:

Add a line below line 1 and enter the following on it: amountPaid = int(input("How much did you pay in cents?")), then change the 100 in the amountOwed calculation to amountPaid.

Here's how the modified code would look:

amount = int(input("How much does your item cost in cents?"))
amountPaid = int(input("How much did you pay in cents?"))
amountOwed = amountPaid - amount  # Change 100 to amountPaid
print(amountOwed // 25, "quarters")
amountOwed = amountOwed % 25
print(amountOwed // 10, "dimes")
amountOwed = amountOwed % 10
print(amountOwed // 5, "nickels")
amountOwed = amountOwed % 5
print(amountOwed // 1, "pennies")

This modification allows the program to calculate the change based on the amount the user paid rather than a fixed amount of 100 cents.

Similar Questions
  1. This unit included this program for making change:amount = int(input("How much does your item cost in cents?")) amountOwed = 100
    1. answers icon 1 answer
  2. amount = int(input("How much does your item cost in cents?"))amountOwed = 100 - amount print(amountOwed//25, "quarters")
    1. answers icon 1 answer
  3. How do i program this into Raptor Language?print "What is the cost of the item?" input cost if ((cost >= 0) && (cost <
    1. answers icon 0 answers
    1. answers icon 1 answer
more similar questions