-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.cpp
249 lines (211 loc) · 5.83 KB
/
main.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#include <iostream>
#include <vector>
using namespace std;
class book
{
public:
long long ISBN;
char auth[100];
char bname[100];
char genre[100];
virtual void getdata()
{
cout << "Enter the name of the book: ";
cin >> bname;
cout << "Enter the name of the author: ";
cin >> auth;
cout << "Enter the ISBN: ";
cin >> ISBN;
cout << "Enter the genre: ";
cin >> genre;
}
virtual void putdata()
{
cout << "Book Name: " << bname << endl;
cout << "Author: " << auth << endl;
cout << "ISBN: " << ISBN << endl;
cout << "Genre: " << genre << endl;
}
};
class BookIssuing {
public:
static void issueBook(vector<book*>& library) {
if (library.empty()) {
cout << "Library is empty. Cannot issue a book." << endl;
return;
}
cout << "Available Books:" << endl;
for (int i = 0; i < library.size(); i++) {
cout << i + 1 << ". ";
library[i]->putdata();
}
int bookIndex;
cout << "Enter the index of the book to issue (1-" << library.size() << "): ";
cin >> bookIndex;
if (bookIndex >= 1 && bookIndex <= library.size()) {
cout << "You have issued the following book:" << endl;
library[bookIndex - 1]->putdata();
// You can add more logic here, such as updating the book's status.
} else {
cout << "Invalid book index. Please try again." << endl;
}
}
};
class textbook : public book
{
public:
char subject[100];
float edition;
void getdata() override
{
book::getdata();
cout << "Enter the Subject Name: ";
cin >> subject;
cout << "Enter the edition of the book: ";
cin >> edition;
}
void putdata() override
{
book::putdata();
cout << "Subject: " << subject << endl;
cout << "Edition: " << edition << endl;
}
};
class novel : public book
{
public:
char publication[100];
void getdata() override
{
book::getdata();
// Remove the following line since novels don't have authors.
// cout << "Enter the name of publication: ";
cin >> publication;
}
void putdata() override
{
book::putdata();
cout << "Publication: " << publication << endl;
}
};
class reference_book : public book
{
public:
char publication[100];
float edition;
void getdata() override
{
book::getdata();
cout << "Enter the name of the publication: ";
cin >> publication;
cout << "Enter the edition of the book: ";
cin >> edition;
}
void putdata() override
{
book::putdata();
cout << "Publication: " << publication << endl;
cout << "Edition: " << edition << endl;
}
};
class fiction : public book
{
public:
void getdata() override
{
book::getdata();
}
void putdata() override
{
book::putdata();
}
};
class thriller : public book
{
public:
void getdata() override
{
book::getdata();
}
void putdata() override
{
book::putdata();
}
};
int main()
{
vector<book*> library;
cout << "Library Management System" << endl;
while (true)
{
cout << "\nMenu:" << endl;
cout << "1. Issue a Book" << endl;
cout << "2. Add a Book" << endl;
cout << "0. Exit" << endl;
cout << "Enter your choice: ";
int choice;
cin >> choice;
switch (choice)
{
case 1:
// Implement book issuing logic
BookIssuing::issueBook(library);
break;
case 2:
while (true) {
cout << "\nAdd a Book:" << endl;
cout << "1. Add Textbook" << endl;
cout << "2. Add Novel" << endl;
cout << "3. Add Reference Book" << endl;
cout << "4. Add Fiction Book" << endl;
cout << "0. Back to Main Menu" << endl;
cout << "Enter your choice: ";
int addChoice;
cin >> addChoice;
switch (addChoice) {
case 1:
library.push_back(new textbook());
library.back()->getdata();
break;
case 2:
library.push_back(new novel());
library.back()->getdata();
break;
case 3:
library.push_back(new reference_book());
library.back()->getdata();
break;
case 4:
library.push_back(new fiction());
library.back()->getdata();
break;
case 0:
// Return to the main menu
break;
default:
cout << "Invalid choice. Please try again." << endl;
}
// Ask if the user wants to add more books
cout << "Do you want to add more books? (1 for yes, 0 for no): ";
int addMore;
cin >> addMore;
if (addMore == 0) {
break; // Exit the add books loop
}
}
break;
case 0:
// Clean up memory and exit
for (int i=0; i<library.size();i++)
{
delete library[i];
}
library.clear();
cout << "Thanks for using this system." << endl;
return 0;
default:
cout << "Invalid choice. Please try again." << endl;
}
}
return 0;
}