Take out a piece of paper. We’ll be programming on paper.
Design a program that calculates the average time it takes to get an order at Taco Hut. Taco Hut has one order/pick-up window. The time it takes to serve the customer is:
Create a TacoHut class with a Queue for their window.
Create a Customer class that has a member variable numTacos. Instances of this class represent the customers in the store.
The program should follow this psuedo code.