-
Notifications
You must be signed in to change notification settings - Fork 0
/
CLUBRECS.txt
410 lines (407 loc) · 9.66 KB
/
CLUBRECS.txt
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
#include<stdio.h>
#include<iostream.h>
#include<conio.h>
#include<fstream.h>
#include<string.h>
class clubmember
{
char name[80];
char grade[20];
int mno;
int attendance;
char zone[80];
char prof[80];
char add[80];
char clubrel[80];
public:
void gradeassign()
{
if(attendance<30)
strcpy(grade,"Bronze");
else if(attendance>=30 && attendance<35)
strcpy(grade,"Silver");
else if(attendance>=35 && attendance<39)
strcpy(grade,"Gold");
}
void getdata()
{
cout << "Enter Name"<<'\n';
gets(name);
cout<<"Enter Membership ID"<<'\n';
cin>>mno;
cout<<"Enter last season attendance"<<'\n';
cin>>attendance;
gradeassign();
cout<<"Enter seating zone"<<'\n';
gets(zone);
cout<<"Enter profession"<<'\n';
gets(prof);
cout<<"Enter address"<<'\n';
gets(add);
cout<<"Specify the relation with the club"<<'\n';
gets(clubrel);
}
void display()
{ cout<<"Name : "<<name<<'\n';
cout<<"Membership ID : "<<mno<<'\n';
cout<<"Last season attendance : "<<attendance<<'\n';
cout<<"Grade : "<<grade<<'\n';
cout<<"Seating zone : "<<zone<<'\n';
cout<<"Profession : "<<prof<<'\n';
cout<<"Address : "<<add<<'\n';
cout<<"Club relation : "<<clubrel<<'\n';
}
int retmno()
{
return mno;
}
char*retname()
{
return name;
}
int retattendance()
{
return attendance;
}
char*retgrade()
{
return grade;
}
};
char ans;
clubmember c1,c2;
fstream file,temp;
void create()
{
file.open("data.dat",ios::out|ios::binary);
do
{
c1.getdata();
file.write((char*)&c1,sizeof(c1));
cout<<"Do you want to enter another record?: (Y/N)"<<'\n';
cin>>ans;
}while(ans=='Y'||ans=='y');
file.close();
}
void showfile()
{
clrscr();
int r=0;
file.open("data.dat",ios::in|ios::binary);
while(file.read((char*)&c1,sizeof(c1)))
{
r++;
cout<<'\n';
cout<<"Record Number : "<<r<<'\n';
cout<<"_____________________"<<'\n';
c1.display();
cout<<"_____________________";
}
file.close();
}
void append()
{
file.open("data.dat",ios::app|ios::binary);
do
{
c1.getdata();
file.write((char*)&c1,sizeof(c1));
cout<<"Do you want to enter another record?: (Y/N)"<<'\n';
cin>>ans;
}while(ans=='Y'||ans=='y');
file.close();
}
void nsearch()
{
file.open("data.dat",ios::in|ios::binary);
char mname[15];
cout<<"Enter name to search"<<'\n';
gets(mname);
while(file.read((char*)&c1,sizeof(c1)))
{
if(strcmp(mname,c1.retname())==0)
{
clrscr();
c1.display();
break;
}
}
file.close();
}
void msearch()
{
file.open("data.dat",ios::in|ios::binary);
int no;
cout<<"Enter membership ID to search by"<<'\n';
cin>>no;
while(file.read((char*)&c1,sizeof(c1)))
{
if(c1.retmno()==no)
{
clrscr();
c1.display();
break;
}
}
file.close();
}
void attcount()
{
file.open("data.dat",ios::in|ios::binary);
int a;
cout<<"Enter minimum attendance to be considered: "<<'\n';
cin>>a;
int r=0;
while(file.read((char*)&c1,sizeof(c1)))
{
if(c1.retattendance()>a)
r++;
}
file.close();
clrscr();
cout<<"The number of members having an attendance > "<<a<<" is "<<r<<'\n';
}
void grcount()
{
file.open("data.dat",ios::in|ios::binary);
char gr[15];
cout<<"Enter grade to be considered: "<<'\n';
cin>>gr;
int r=0;
while(file.read((char*)&c1,sizeof(c1)))
{
if(strcmp(c1.retgrade(),gr)==0)
r++;
}
file.close();
clrscr();
cout<<"The number of members belonging to the grade "<<gr<<" is "<<r<<'\n';
}
void editname()
{
file.open("data.dat",ios::in|ios::binary);
temp.open("new.dat",ios::out|ios::binary);
char mname[15];
cout<<"Enter the name of the member whose details you want to edit: "<<'\n';
gets(mname);
while(file.read((char*)&c2,sizeof(c2)))
{
if(strcmp(c2.retname(),mname)==0)
{
cout<<"Enter new details"<<'\n';
c2.getdata();
}
temp.write((char*)&c2,sizeof(c2));
}
temp.close();
file.close();
remove("data.dat");
rename("new.dat","data.dat");
}
void editmno()
{
file.open("data.dat",ios::in|ios::binary);
temp.open("data.dat",ios::out|ios::binary);
int er;
cout<<"Enter the membership ID of the record you want to edit: "<<'\n';
cin>>er;
file.seekg(0);
while(file.read((char*)&c2,sizeof(c2)))
{
if(er==c2.retmno())
{
cout<<"Enter new details: "<<'\n';
c2.getdata();
}
temp.write((char*)&c2,sizeof(c2));
}
temp.close();
file.close();
remove("data.dat");
rename("new.dat","data.dat");
}
void delmno()
{
file.open("data.dat",ios::in|ios::binary);
temp.open("new.dat",ios::out|ios::binary);
int no;
cout<<"Enter membership ID of the member you want to delete from the records: "<<'\n';
cin>>no;
file.seekg(0);
while(file.read((char*)&c2,sizeof(c2)))
{
if(c2.retmno()!=no)
temp.write((char*)&c2,sizeof(c2));
}
file.close();
temp.close();
remove("data.dat");
rename("new.dat","data.dat");
}
void delname()
{
file.open("data.dat",ios::in|ios::binary);
temp.open("new.dat",ios::out|ios::binary);
char mname[15];
cout<<"Enter name of the member you want to delete from the records: "<<'\n';
gets(mname);
file.seekg(0);
while(file.read((char*)&c2,sizeof(c2)))
{
if(strcmp(c2.retname(),mname)!=0)
temp.write((char*)&c2,sizeof(c2));
}
file.close();
temp.close();
remove("data.dat");
rename("new.dat","data.dat");
}
void insmno()
{
file.open("data.dat",ios::in|ios::binary);
temp.open("new.dat",ios::out|ios::binary);
int no;
cout<<"Enter the membership ID of the member after which you want to enter the new record: "<<'\n';
cin>>no;
file.seekg(0);
while(file.read((char*)&c2,sizeof(c2)))
{
temp.write((char*)&c2,sizeof(c2));
if(c2.retmno()==no)
{
cout<<"Enter details of the member to be inserted: "<<'\n';
c1.getdata();
temp.write((char*)&c1,sizeof(c1));
}
}
file.close();
temp.close();
remove("data.dat");
rename("new.dat","data.dat");
}
void insname()
{
file.open("data.dat",ios::in|ios::binary);
temp.open("new.dat",ios::out|ios::binary);
char mname[15];
cout<<"Enter the name of the member after which you want to insert the new record: "<<'\n';
gets(mname);
file.seekg(0);
while(file.read((char*)&c2,sizeof(c2)))
{
temp.write((char*)&c2,sizeof(c2));
if(strcmp(c2.retname(),mname)==0)
{
cout<<"Enter details of the member you want to insert: "<<'\n';
c1.getdata();
temp.write((char*)&c1,sizeof(c1));
}
}
file.close();
temp.close();
remove("data.dat");
rename("new.dat","data.dat");
}
void countrec()
{
file.open("data.dat",ios::in|ios::binary);
file.seekg(0,ios::end);
int lp=file.tellg();
int s=sizeof(c1);
int lr=lp/s;
clrscr();
cout<<"The total number of members is "<<lr<<'\n';
file.close();
}
void main()
{
char ch1;
int ch;
char choice;
clrscr();
do
{
clrscr();
cout<<"Choose an option from the following menu"<<'\n';
cout<<"1)Create a file for all club members"<<'\n';
cout<<"2)Display the details of all club members"<<'\n';
cout<<"3)Add member records to the existing records"<<'\n';
cout<<"4)Edit records"<<'\n';
cout<<"5)Search records"<<'\n';
cout<<"6)Count records"<<'\n';
cout<<"7)Insert records"<<'\n';
cout<<"8)Delete records"<<'\n';
cin>>ch;
switch(ch)
{
case 1: create();
break;
case 2: showfile();
break;
case 3: append();
break;
case 4: cout<<"Choose from the following"<<'\n';
cout<<"a)Edit on the basis of a user given name"<<'\n';
cout<<"b)Edit on the basis of membership ID"<<'\n';
cin>>choice;
if(choice=='a')
editname();
else if(choice=='b')
editmno();
else
cout<<"Invalid choice"<<'\n';
break;
case 5: cout<<"Choose from the following"<<'\n';
cout<<"a)Search on the basis of name"<<'\n';
cout<<"b)Search on the basis of membership ID of the member"<<'\n';
cin>>choice;
if(choice=='a')
nsearch();
else if(choice=='b')
msearch();
else
cout<<"Invalid choice"<<'\n';
break;
case 6: cout<<"Choose from the following"<<'\n';
cout<<"a)Count the members on the basis of the membership grade"<<'\n';
cout<<"b)Count the members having a minimum attendance"<<'\n';
cout<<"c)Count the total number of members in the club"<<'\n';
cin>>choice;
if(choice=='a')
grcount();
else if(choice=='b')
attcount();
else if(choice=='c')
countrec();
else
cout<<"Invalid choice"<<'\n';
break;
case 7: cout<<"Choose from the following"<<'\n';
cout<<"a)Insert details after a given member name"<<'\n';
cout<<"b)Insert details after a given membership ID"<<'\n';
cin>>choice;
if(choice=='a')
insname();
else if(choice=='b')
insmno();
else
cout<<"Invalid choice"<<'\n';
break;
case 8: cout<<"Choose from the following"<<'\n';
cout<<"a)Delete member details on the basis of a given member name"<<'\n';
cout<<"b)Delete member details on the basis of a given membership ID"<<'\n';
cin>>choice;
if(choice=='a')
delname();
else if(choice=='b')
delmno();
else
cout<<"Invalid choice"<<'\n';
break;
default: cout<<"Invalid choice"<<'\n';
}
cout<<'\n';
cout<<"Do you want to go back to the main menu? : (Y/N)"<<'\n';
cin>>ch1;
}while(ch1=='y'||ch1=='Y');
}