Question

Overview - Vending Machine For this project, we will simulate a vending machine where, for simplicity,...

Overview - Vending Machine

For this project, we will simulate a vending machine where, for simplicity, all of the items in the machine are the same price of $1.25

The vending machine can receive Nickels, Dimes, Quarters, and one dollar Bills.

The user can add money, ask for the product, ask for their money back, or walk away (exit).

The program will interact with the user and allow the following commands:

  • N - adds nickel
  • D - adds dime
  • Q - adds quarter
  • B - adds $1
  • R - returns money
  • P - dispenses product and returns change if the balance is enough to cover the cost
  • X – exit

Since in theory the user can buy two products, dispensing the product doesn’t end the program, exiting ends the program.

Sample Run

Item Cost: 1.25 Balance: 0.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): g

Invalid Coin or Bill or Command

Item Cost: 1.25 Balance: 0.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): p

Unable to dispense!

Item Cost: 1.25 Balance: 0.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): q

Item Cost: 1.25 Balance: 0.25

Enter Money(Q,D,N,B for Bill) or command (R, P, X): d

Item Cost: 1.25 Balance: 0.35

Enter Money(Q,D,N,B for Bill) or command (R, P, X): n

Item Cost: 1.25 Balance: 0.40

Enter Money(Q,D,N,B for Bill) or command (R, P, X): p

Unable to dispense!

Item Cost: 1.25 Balance: 0.40

Enter Money(Q,D,N,B for Bill) or command (R, P, X): b

Item Cost: 1.25 Balance: 1.40

Enter Money(Q,D,N,B for Bill) or command (R, P, X): p

Got Product with change: 0.15

Item Cost: 1.25 Balance: 0.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): b

Item Cost: 1.25 Balance: 1.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): b

Item Cost: 1.25 Balance: 2.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): p

Got Product with change: 0.75

Item Cost: 1.25 Balance: 0.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): b

Item Cost: 1.25 Balance: 1.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): d

Item Cost: 1.25 Balance: 1.10

Enter Money(Q,D,N,B for Bill) or command (R, P, X): d

Item Cost: 1.25 Balance: 1.20

Enter Money(Q,D,N,B for Bill) or command (R, P, X): d

Item Cost: 1.25 Balance: 1.30

Enter Money(Q,D,N,B for Bill) or command (R, P, X): p

Got Product with change: 0.05

Item Cost: 1.25 Balance: 0.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): b

Item Cost: 1.25 Balance: 1.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): d

Item Cost: 1.25 Balance: 1.10

Enter Money(Q,D,N,B for Bill) or command (R, P, X): d

Item Cost: 1.25 Balance: 1.20

Enter Money(Q,D,N,B for Bill) or command (R, P, X): p

Unable to dispense!

Item Cost: 1.25 Balance: 1.20

Enter Money(Q,D,N,B for Bill) or command (R, P, X): n

Item Cost: 1.25 Balance: 1.25

Enter Money(Q,D,N,B for Bill) or command (R, P, X): p

Got Product with change: 0.00

Item Cost: 1.25 Balance: 0.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): b

Item Cost: 1.25 Balance: 1.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): b

Item Cost: 1.25 Balance: 2.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): r

Money Returned: 2.00

Item Cost: 1.25 Balance: 0.00

Enter Money(Q,D,N,B for Bill) or command (R, P, X): x

Bye Bye!

Press any key to continue . . .

0 0
Add a comment Improve this question Transcribed image text
Answer #1

balance = 0.00
  
while(True):
print("Item Cost: 1.25 Balance:{:,.2f}".format(balance))
key = input("Enter Money(Q,D,N,B for Bill) or command (R, P, X):").lower()
if(key == "x"):
print("Bye Bye!\nPress any key to continue . . .")
break
elif(key == "r"):
print("Money Returned:{:,.2f}".format(balance))
balance = 0.0
elif(key == "p"):
if(balance < 1.25):
print("Unable to dispense!")
else:
print("Got Product with change:{:,.2f}".format(round(balance - 1.25,2)))
balance = 0.0
elif(key == "q"):
balance += 0.25
elif(key == "d"):
balance += 0.1
elif(key == "n"):
balance += 0.05
elif(key == "b"):
balance += 1.0
else:
print("Invalid Coin or Bill or Command")
  
hope this is helpful, In info if x is pressed end the program ,but in sample output "press any key to continue.." ,there is little bit confusion, As of now it ends the program, for any modifications comment below

Add a comment
Know the answer?
Add Answer to:
Overview - Vending Machine For this project, we will simulate a vending machine where, for simplicity,...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • The California student chapter is co-sponsoring a tea vending machine with a heavily subsidized price of...

    The California student chapter is co-sponsoring a tea vending machine with a heavily subsidized price of 15 cents a cup. Design a Mealy FSM for the vending machine assuming the students can load nickels (input N) and dimes (input D), only one coin at a time. If the user tries to enter two coins at the same time, the vending machine would not allow it, i.e. it will stay in the same state. If the user pays more than 15...

  • C++ HW Question Your program will simulate a simple change maker for a vending machine. It...

    C++ HW Question Your program will simulate a simple change maker for a vending machine. It will start with a stock of coins and dollars. It will then repeatedly request the price for an item to be purchased or to quit. If given a price, it will accept nickels, dimes, quarters, one-dollar and five-dollar bills—deposited one at a time—in payment. When the user has deposited enough to cover the cost of the item, the program will calculate the coins to...

  • Criven products in a vending machine (Tahle and their respective prices (Table 2), develop VBA en...

    please help me ASAP ...l need a code yoour Criven products in a vending machine (Tahle and their respective prices (Table 2), develop VBA ende that would undertake the tollowing tasks after the customer clicks the 'purchase a producibttn: u. Tutheじustomer: i. Reive the custum' selcted product codu ii. Cunlim and display the customer's selected pruduct und product price. iii. Roccive the customer's moncy which may be input in onc or morc of the prescrihed denominations (Tahle 3). iv. Flag...

  • 1. Create a new multi-class Java program which implements a vending machine simulator which contains the...

    1. Create a new multi-class Java program which implements a vending machine simulator which contains the following functionality: A) At program startup, the vending machine is loaded with a variety of products in a variety of packaging for example soda/tonic/Coke in bottles, peanuts in bags, juice in cartons, etc. Also included is the cost of each item. The program should be designed to easily load a different set of products easily (for example, from a file). Also at program startup,...

  • ) Object-Oriented Design 7 Write a program that simulates a vending machine. Products can be purc...

    Write in java as simple as possible coding.. ) Object-Oriented Design 7 Write a program that simulates a vending machine. Products can be purchased by inserting coins with a value at least equal to the cost of the product. A user selects product from a list of available products, adds coins, and either gets the productor gets the coins returned. The coins are returned if insufficient money was supplied or if the product is sold out. The machine does not...

  • A customer want’s a vending machine that will accept Nickel and Dime and dispense gum or...

    A customer want’s a vending machine that will accept Nickel and Dime and dispense gum or candy. The gum pack cost 20₵ and the candy cost 15₵. When the user enters a coin in the slot it should decode the type of coin that has been entered and will displayed the total amount enter thus far in a seven segment display. If that amount is less than the item cost the system will tell the user that they have insufficient...

  • Write a program in Java that simulates a vending machine: The vending machine sells three types...

    Write a program in Java that simulates a vending machine: The vending machine sells three types of food: 1) Potato chips $1.25; 2) Cookies $0.85; 3) Candies $0.95. The program will prompt for the buyer to enter the amount in quarters (25 cents), dimes (10 cents), and nickels (5 cents). The program will then present a selection menu for the foods and prompt the buyer to enter the amount of quarters, dimes and nickels. The machine would then proceed to...

  • write a program in java that determines the change to be dispensed from a vending machine....

    write a program in java that determines the change to be dispensed from a vending machine. An item in the machine can cost between 25 cents and a dollar, in a 5-cent increments(25,30,35.....,90,95,or 100), and the machine accepts only a single dollar bill to pay for the item. for example a possible dialogue with the user might be "Enter price of item (from 25 cents to a dollar, in 5-cent increments):45 you boughtan item for 45 cents and gave me...

  • write a program in C that determines the change to be dispensed from a vending machine....

    write a program in C that determines the change to be dispensed from a vending machine. An item in the machine can cost between 25 cents and a dollar, in a 5-cent increments(25,30,35.....,90,95,or 100), and the machine accepts only a single dollar bill to pay for the item. for example a possible dialogue with the user might be "Enter price of item (from 25 cents to a dollar, in 5-cent increments):45 you boughtan item for 45 cents and gave me...

  • In the wake of COVID-19, a new vending machine is going to be installed at SSU...

    In the wake of COVID-19, a new vending machine is going to be installed at SSU that provides items that can potentially mitigate the spreading of this virus among the SSU community. The machine sells the following items at a subsidized rate: hand sanitizer, mask, tissues, and wet wipes. You are tasked with writing a program for this machine so that it can put into operation. This project should do the following: Show the customer all the products that are...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT