Question: write one java program The high-class restaurant Md.Ronald plans to computerize their meal ordering procedure. The following is the description of the wanted system provided
write one java program

The high-class restaurant Md.Ronald plans to computerize their meal ordering procedure. The following is the description of the wanted system provided by the restaurant manager Bob: 1. The waiter/waitress places an order with meal code and table number through the terminal. 2. The cook views the order through the console and makes the meal. 3. When the meal is ready, the waiter/Waitress delivers the meal to the customer. 4. The orders will be handled in the FIFO (First-in-first-out) manner. Create a class named MealOrderingSystem that has the following methods: # METHOD DESCRIPTION TIME COMPLEXITY numOfOrders Return the number of orders O(1) order (M, T) Place an order with meal code M and table number 1 O(1) nextOrder Remove and return the next order O(1)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
