-
Notifications
You must be signed in to change notification settings - Fork 0
/
HotelManagement.cpp
50 lines (41 loc) · 1.21 KB
/
HotelManagement.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <iostream>
#include <string>
using namespace std;
// Class for managing hotel booking
class Booking {
private:
string customerName;
int roomNumber;
int stayDuration;
public:
// Default Constructor
Booking() {
customerName = "Unknown";
roomNumber = 0;
stayDuration = 0;
}
// Destructor
~Booking() {
cout << "Booking of " << customerName << " is canceled." << endl;
}
// Function to book a room
void bookRoom(string cName, int rNumber, int duration) {
customerName = cName;
roomNumber = rNumber;
stayDuration = duration;
}
// Function to display booking details
void displayBookingInfo() {
cout << "Customer Name: " << customerName << endl;
cout << "Room Number: " << roomNumber << endl;
cout << "Stay Duration: " << stayDuration << " days" << endl;
}
};
int main() {
Booking b1;
// Booking a room
b1.bookRoom("Michael Scott", 101, 3);
// Display booking information
b1.displayBookingInfo();
return 0;
}