C++ Fast Food Management System using classes, objects, and polymorphism. Manage menu, take orders, calculate bills with GST and VAT, track daily sales and item quantities. Console-based, uses STL containers like vectors & maps
- Add/Delete menu items dynamically
- Take multiple customer orders with unique Customer IDs
- Auto-generated timestamps for each order
- Calculates GST (5%) and VAT (10%)
- Displays subtotal, tax, and total amount
- Shows individual order history
- Tracks total daily sales
- Displays item-wise quantity sold
- Make sure you have a C++ compiler installed (e.g.,
g++) - Compile the code:
g++ fastfood.cpp -o fastfood
- Run the program:
./fastfood