Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Please write in psudocode, not C or C++ code The ACME Company has approached you

ID: 3771500 • Letter: P

Question

Please write in psudocode, not C or C++ code

The ACME Company has approached you with a request to develop the psuedocode that will control the operations of their new series of vending machines. The program will be required to maintain the product inventory and money reservoir. The program should do the following operations:
1. Take as input an item number and money (The program terminates when a user enters a negative money amount and “000” as an item number.)
2. Check to see if the item exists. (if it doesn’t give the user a chance to re-enter the number)
3. Check to see if the money is sufficient enough to pay for item. (If not request more money)
4. Check to see if item is in stock. (If not user should be notified with the choice of selecting new item or cancelling the order)
5. If the item is in stock and the money is sufficient, the program should provide change and update the money reservoir and product inventory.
6. When the dispensing change, the program must insure that it always returns the correct amount of change based on the coins available in the reservoir. For example, if a user is owed $0.30 then the program may return 1 quarter and 1 nickel. However, if there are no quarters, the program should be smart enough to return a different combination of that doesn’t include quarters. (If no combination of change exists, the user’s order should be cancelled and the user should be allowed to make an alternate selection)
7. Once a transaction is complete, the user should be prompted to make a new selection. The program will end when a user enters a negative money amount and “000” for the item number.
Product Inventory:
Below is a breakdown of the products offered by the vending machine. In addition to the product names, the prices, item number and quantities are also listed below. The user will use the item number to select the product they wish to purchase.
Product Name Item Number Price Quantity in Stock
Candy Bar 123 $0.60 60
Gum 124 $0.35 75
Potato Chips 125 $0.75 40
Trail Mix 126 $.050 50
Breakfast Bar 127 $0.80 45

Explanation / Answer

loop:
    loop:
      input: item number
       input : money
      if item number === 000
         terminate
      end if
      if item number not exist
          input : item number
       end
      if money not sufficient
          input : more money
      end
     if item not in stock
         input : item number
end
    until ( money is sufficient and item is available )
   check you have enough change for item
    if not have enough change
    cancle order
   end
   if transaction_status == completed
      prompr("make new selection")
    end

until(item number == 000 or money is -ve )