Make a flowchart where a program dispenses cash at an ATM machine that has been upgraded to dispense $5 and $20 bills. The machine should dispense the fewest number of bills possible for the amount entered. For example, if the user enters $25 as the withdrawal amount, the machine should dispense one $20 bill, and one $5 bill (not five $5 bills. The program should continue requesting withdrawal amounts from users until they enter -999. Each time a withdrawal amount is entered, if the amount is NOT evenly divisible by 5, then output a message: “This machine dispenses increments of $5 only.” Otherwise, calculate and output the number of $5 bills and the number of $20 bills the machine should dispense. Your output should include an onscreen printout indicating how many notes of each bill should be dispensed.
Make a flowchart where a program dispenses cash at an ATM machine that has been upgraded to dispense $5 and $20 bills. The machine should dispense the fewest number of bills possible for the amount entered. For example, if the user enters $25 as the withdrawal amount, the machine should dispense one $20 bill, and one $5 bill (not five $5 bills. The program should continue requesting withdrawal amounts from users until they enter -999. Each time a withdrawal amount is entered, if the amount is NOT evenly divisible by 5, then output a message: “This machine dispenses increments of $5 only.” Otherwise, calculate and output the number of $5 bills and the number of $20 bills the machine should dispense. Your output should include an onscreen printout indicating how many notes of each bill should be dispensed.
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 3 images