-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfip.cpp
More file actions
294 lines (209 loc) · 7.15 KB
/
Copy pathfip.cpp
File metadata and controls
294 lines (209 loc) · 7.15 KB
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
#include<iostream> //iostream header file
#include<string> //string header file
using namespace std;
struct appointment
{ //Declaring appointment Structure variables
string patientName;
string patientDiseas;
string patientSex;
int doc_Id;
int patientAge;
int patientNum;
int patientID;
char choice;
char choose;
};
void addDoc() { //addDoc void Function and admin can add doctors to the appointments
appointment app;
cout << endl;
cout << "\tPlease click 'x' for Add doctors in this month: ";
cin >> app.choice;
if (app.choice == 'x')
{
cout << endl << endl;
cout << "\tCardiologist :- Dr.Peter Gregory ID: 1921\n";
cout << "\tGynologist :- Dr.Simon sancher ID: 1233\n";
cout << "\tDermotologist:- Dr.Maxwell hapter ID: 1425\n";
cout << "\tRadiologit :- Dr.Harry monk ID: 1531\n";
cout << "\tNeurologist :- Dr.Riki casper ID: 1935\n\n\n";
cout << "\tFill the details sheet for appointment\n\n";
cout << "\t[1].Patient Name : ";
cin >> app.patientName;
cout << "\t[2].Patient age : ";
cin >> app.patientAge;
cout << "\t[2].Patient Sex : ";
cin >> app.patientSex;
cout << "\t[4].Patient disease: ";
cin >> app.patientDiseas;
cout << "\t[5].Contact Number: ";
cin >> app.patientNum;
cout << "\t[3].Doctor ID : ";
cin >> app.doc_Id;
cout << endl << endl;
cout << "\tDoctor Appointment added Successful\n\n";
cout << endl << endl;
cout << "\tPlease click 'y' view patient appointment status: ";
cin >> app.choose;
cout << endl << endl;
}
else {
cout << "\tWrong input!!\n\n";
}
cout << endl << endl;
if (app.choose == 'y')
{
cout << "\t*---------------------------------------*" << endl;
cout << "\t* Patient Name:- " << app.patientName << "\t\t\t*" << endl;
cout << "\t* Doctor ID :- " << app.doc_Id << "\t\t\t*" << endl;
cout << "\t* Date :- 2023.02.13 *" << endl;
cout << "\t* Time :- 7.30 a.m - 10.15 a.m *" << endl;
cout << "\t* Patient no :- 22 *" << endl;
cout << "\t*---------------------------------------*" << endl;
cout << endl << endl << endl;
}
else {
cout << "\t\tInvalid Input!!!" << endl;
cout << endl << endl << endl;
}
}
char op2; //Declare variables for void Delete Doctor Function
int docId;
void deleteDoc() //admin can delete the doctors of the registered appointments
{
cout << "\tPlease click'w'to delete doctors:- ";
cin >> op2;
cout << endl << endl;
if (op2 == 'w') {
cout << "\tThe Registered Doctors in Appointments in this month" << endl << endl;
cout << "\tCardiologist :- Dr.Peter Gregory ID: 1921\n";
cout << "\tGynologist :- Dr.Simon sancher ID: 1233\n";
cout << "\tDermotologist:- Dr.Maxwell hapter ID: 1425\n";
cout << "\tRadiologit :- Dr.Harry monk ID: 1531\n";
cout << "\tNeurologist :- Dr.Riki casper ID: 1935\n\n\n";
cout << "\tEnter the Doctor ID For delete Doctor:- ";
cin >> docId;
cout << endl << endl;
if (docId == 1921)
{
cout << "\tDeleted Cardiologist :- Dr.Peter Gregory ID: 1921\n";
cout << endl << endl;
}
else if (docId == 1233)
{
cout << "\tDeleted Gynologist :- Dr.Simon sancher ID: 1233\n";
cout << endl << endl;
}
else if (docId == 1425)
{
cout << "\tDeleted Dermotologist:- Dr.Maxwell hapter ID: 1425\n";
cout << endl << endl;
}
else if (docId == 1531)
{
cout << "\tDeleted Radiologit :- Dr.Harry monk ID: 1531\n";
cout << endl << endl;
}
else if (docId == 1935) {
cout << "\tDleted Neurologist :- Dr.Riki casper ID: 1935\n";
cout << endl << endl;
}
} else {
cout << "\tINvalid input!!!\n\n\n";
}
}
void viewApp() //admin can view the already registered appointments
{
cout << "\tRegitered Appointments for the Available Doctors\n\n";
cout << "\tDOC ID = 1921" << endl;
cout << "\t23 Patients Reistered Already\n\n";
cout << "\tDOC ID = 1233" << endl;
cout << "\t42 Patients Reistered Already\n\n";
cout << "\tDOC ID = 1425" << endl;
cout << "\t14 Patients Reistered Already\n\n";
cout << "\tDOC ID = 1921" << endl;
cout << "\t23 Patients Reistered Already\n\n";
cout << "\tDOC ID = 1935" << endl;
cout << "\t23 Patients Reistered Already\n\n";
cout << endl << endl;
}
void viewCompDetails()
{ //viewCompanyDetails void Function
cout << "\t Location :- London,MetroPoliton carcel street 108/29 \n\n";
cout << "\t Emali :- spirelondon@gmail.com \n\n";
cout << "\t WebServices :- WWW.SPIRELONDON.COM \n\n";
cout << "\t Telephone :- +44 123 345 4752 \n\n";
cout << endl << endl;
}
int main()
{ //main Function
string userName, passWord; //declaring variables for main function
char op;
char press;
int attempts= 3;
cout << endl << endl;
cout << "\t\t**SPIRE HEALTH LONDON** \n\n";
cout << "\t\t\tUserlogin\n\n";
cout << "\tPress 'y' to login:- ";
cin >> press;
cout << endl << endl;
while(attempts>0){
if (press == 'y') { //if else condition for username and password in 3 attempts.
cout << " Username: ";
cin >> userName;
cout << " Password: ";
cin >> passWord;
cout << endl;
}
else {
cout << "wrong Input";
}
if (userName == "admin" && passWord == "password") {
cout << "\t Login successful\n\n";
do { //do while loop for looping the menu
cout << "\tAppointment system SPIRE HEALTH LONDON hospital\n\n";
cout << "\t[1]. Make an Appointment.\n";
cout << "\t[2]. Delete an Appointments.\n";
cout << "\t[3]. View Appointment.\n";
cout << "\t[4]. View company details\n";
cout << "\t[5]. Log out\n";
cout << "\t[6]. Exit\n\n";
cout << "\tselect option: ";
cin >> op;
cout << endl << endl;
switch (op) { //Switch case for calling the functions
case '1':
addDoc(); //Calling addDoctor function
break;
case'2':
deleteDoc(); //Calling delete Doctor function
break;
case'3':
viewApp(); //Calling viewApp Function
break;
case'4':
viewCompDetails(); //Calling viewCompanyDetails Function
break;
case'5':
cout << "logged out successfully!\n\n ";
break;
case'6':
cout << "Thanks for visiting US!!!\n\n";
break;
default:
cout << "invalid input!!\n\n";
}
} while (op != '5');
}
else {
cout << "\t !!!Wrong username or password!!!/n";
cout << endl << endl;
}
attempts--;
if(attempts==0){
cout<<"\tExceeded maximum number of attempts/n";
}else{
cout<<"\tyou have "<<attempts<<" attempts remaining\n\n";
}
}
return 0;
}