HELP IN C++ ASAP!!!
I.
Hotel Management System (100 points)
The project involves creating a basic Hotel Management System where users can perform various operations related to room management, customer check-in and check-out, and generate guest summary reports.
Features: Manage Rooms Add new rooms with details such as type (AC/Non-AC), comfort level, size, and daily rent. Search for existing rooms. Delete rooms.
Check-In Develop a mechanism to check-in guests, capturing essential details like booking id, customer name, address, phone number, booking dates, and advance payment. Ensure that rooms can only be booked if they are available.
Get available rooms Create a feature that displays a list of available rooms, allowing users to see which rooms are ready for check-in.
Search customer Implement a search functionality to find customer details based on their name. Display relevant information such as room number, address, and phone number.
Check-out room Develop a system to process customer check-outs, calculating and displaying the bill Include the total amount due, advance payment, and the remaining balance.
Get guest summary report Generate a summary report of guests currently checked into the hotel, including their names, room numbers, addresses, and phone numbers.
Implement this in C++ using a customer class, a room class and a hotel management class that inherits from the room class.