Menu-DO is a Java-based console application for restaurant menu management and order processing. Users can view a menu, add items to a tray, and generate a receipt with VAT.
- View and manage a menu.
- Add items to a tray and calculate the total.
- Generate a receipt with VAT.
- Run the program:
javac MenuDOSystem.java java MenuDOSystem
- Main Options:
[M]: View menu and add items to the tray.[T]: View tray and place an order.[A]: Add, update, or remove menu items (Admin).[E]: Exit the program.
- Menu: Handles menu items using
HashMap. - Tray: Manages tray contents using
ArrayList. - Order: Processes orders and generates receipts.
- MenuDOSystem: Main class for program flow.
- Java JDK installed on your system.