-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSchoolManagementSystem.cpp
More file actions
541 lines (416 loc) · 12.7 KB
/
Copy pathSchoolManagementSystem.cpp
File metadata and controls
541 lines (416 loc) · 12.7 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
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
// SchoolManagementSystem.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include<iomanip>
#include <cstdlib>
#include <string>
using namespace std;
const unsigned int max_students_class = 40;
enum sections {A,B,C,D,E,F,G};
enum your_classes { one, two, three, four, five, sex, seven, eight, nine, ten };
const unsigned int classes = 10;
enum subjects {English,Urdu,Math,Chemistry,Computer,Drawing,Pysics,GeneralScience};
const unsigned int totalMarks=100;
int n = 0;
int size_max = 30;
////////////////////////
void printSteric() // to print steric
{
for (int j = 0; j < 45; j++)
cout << "*";
cout << endl;
}
////////////////////////
void printdash() // to print dashes
{
for (int j = 0; j < 45; j++)
cout << "-";
cout << endl;
}
////////////////////////
void clear_screen()
{
#if defined(WIN32)||defined(_WIN32)||defined(WIN86)
system("clear");
#endif defined(WIN64)||defined(_WIN64)
system("clear");
system("clear");
}
/////
class Class {
private:
unsigned int Class;
unsigned int rollno[max_students_class];
double fees[max_students_class]; // fees for per student in a class
public:
sections section =A;
void setClass()
{
cout << " In which class do you want to study? ";
cin >> Class;
do {
if (Class < classes)
{
cout << "\n you are applying for class " << Class <<endl;
cout << " lets fill application process " <<endl;
break;
}
else {
cout << " you can get admission in only 1 to 10 classes \n ";
cout << "please choose from 1 to 10 \n ";
cin >> Class;
}
} while (Class > classes); // do while loop closed
}
//
int showClass()
{
return Class;
}
//
sections setSection()
{
while (true)
{
if (n <= max_students_class && section == A)
{
n++;
if(n>40)
{
section = B;
n = 0;
break;
return section;
}
else
{
section = B;
rollno[n++] = n;
return section;
}
}
if (n > max_students_class && section == A)
{
n++;
if (n > 40)
{
section = C;
n = 0;
return section;
break;
}
else
section = B;
return section;
}
else if (n > max_students_class && section == B)
{
n++;
if (n > 40)
{
section = D;
n = 0;
return section;
break;
}
else
section = C;
return section;
}
else if (n > max_students_class && section == C)
{
n++;
if (n > 40)
{
section = E;
n = 0;
return section;
break;
}
else
section = D;
return section;
}
else if (n > max_students_class && section == D)
{
n++;
if (n > 40)
{
section = F;
n = 0;
return section;
break;
}
else
return section;
section = E;
}
else if (n > max_students_class && section == E)
{
n++;
if (n > 40)
{
section = G;
n = 0;
return section;
break;
}
else
section = F;
return section;
}
else if (n > max_students_class && section == F)
{
n++;
if (n > 40)
{
cout << " you can't get admission now \n sorry , because seats are full \n";
cout << " you can take admission in next time . Best of luck \n \n";
}
else
section = G;
return section;
}
}//for while
} //function body
//
void showSection()
{
if (section == A)
{
cout << " A ";
}
else if (section == B)
{
cout << " B ";
}
else if (section == C)
{
cout << " C ";
}
else if (section == D)
{
cout << " D ";
}
else if (section == E)
{
cout << " E ";
}
else if (section == F)
{
cout << " F ";
}
else if (section == G)
{
cout << " G ";
}
}
//
//
int getRollNo()
{
return rollno[n] = n;
}
//
void payYourFees()
{
cout << "Pay your fees first \" 5000 rs \" to get admission \n";
cout << "Enter amount : ";
cin >> fees[n];
}
//
void payedFees()
{
cout << " Thanks for paying fees : " << fees[n] <<endl;
cout << "\n your admission process is done " << " in class " << Class;
cout << "\n classes start from next week \n ";
cout << "\n We will happy to see you in class ! \n ";
}
//
};
////////////////////
// for student personal information
class StudentAdmission : public Class
{
private:
string fname; //first Name
string lname; //first Name
// for student personal information
int age;
char gender;
string sex;
string address;
double phone_no;
// for previous class marks
int previousClassMarks;
int previousClass;
char passingGrade;
public:
void setStudentPersonelInformation()
{
cout << " Enter your first name : ";
cin >> fname;
cout << " Enter your Last name : ";
cin >> lname;
cout << " Enter your age : ";
cin >> age;
cout << " Enter your gender \"press m for male \" or \" f for female \" : ";
cin >> gender;
if (gender == 'm' or gender == 'M')
sex = " Male ";
else
sex = " Female ";
cout << "Enter your address : ";
getline(cin, address);
cout << "Enter your phone no or fathers mobile no : ";
cin >> phone_no;
}
//
void showStudentPersonelInformation()
{
cout << " first name : " << fname << endl;
cout << " Last name : " << lname << endl;
cout << " Age : " << age << endl;
cout << " Gender : " << sex << endl;
cout << " phone _no : " << phone_no << endl;
cout << " Address : " << address << endl;
}
////
void getPreviousRecord()
{
cout << " Enter your previous class ";
cin >> previousClass;
cout << " Enter your previous class Marks";
cin >> previousClassMarks;
cout << " Enter your previous class Grade";
cin >> passingGrade;
}
//
void showPreviousRecord()
{
cout << "\nprevious class :"<< previousClass;
cout << " \nEnter your previous class Marks "<< previousClassMarks;
cout << "\nprevious class Grade : "<<passingGrade<<endl;
}
};
////////////////////////
////////////////////////
class Management {
};
int main()
{
char ch;
int input;
clear_screen();
cout << flush;//flush forces the printing to the screen before it clears
do
{
system("CLS");
system("CLS");
cout << endl;
/// /// ////to print statements to show user what to do? /// /// ///
printdash();
cout << " Student Record Management System \n";
printdash();
printSteric();
cout << " Administration Panel \t\t\" press 1 \" \n";
cout << " Student login \t \t \" press 2 \" \n";
cout << " student register / sign up \" press 3 \" \n";
printSteric();
/// /// //// /// /// ///
cout << "\b\" press 1 or 2 or 3 \" \n";
cin >> input;
if(input == 1)
{
system("CLS");
system("CLS");
cout << " you are on Administration portal ";
}
else if( input == 2)
{
system("CLS");
system("CLS");
cout << " you are on student portal ";
}
else if (input == 3)
{
system("CLS");
cout << endl;
system("CLS");
system("CLS");
cout << endl;
cout << " you are on Sign up page \n ";
cout << " input what we want you to enter : so lets start \n\n \n ";
printdash();
printdash;
cout << endl;
StudentAdmission Students;
cout << " Enter your personell Information \n";
printSteric();
cout << endl;
Students.setStudentPersonelInformation();
printSteric();
cout << "\nEnter your Previous Record\n";
cout << endl;
Students.getPreviousRecord();
printSteric();
cout << endl;
Students.setClass();
Students.setSection();
printdash();
cout << endl;
cout << " Pay you Fees first then your admission is done \n";
Students.payYourFees();
cout << " your roll no is : ";
Students.getRollNo();
printdash();
printdash();
while(true)
{
system("CLS");
system("CLS");
cout << "\n check your information which you provide to us \n";
cout << " if you want to change something so press y " <<endl ;
cout << endl;
cout<< endl;
printdash();
Students.showStudentPersonelInformation();
Students.showPreviousRecord();
Students.payedFees();
Students.showSection();
cout << "\n your roll no is : " << Students.getRollNo() << endl;
printSteric();
cout << "\n check your information which you provide to us \n";
cout << " if you want to change something so press y " << endl;
cin >> ch;
switch (ch)
{
case 'y':
{
system("CLS");
system("CLS");
Students.setStudentPersonelInformation();
Students.getPreviousRecord();
Students.setClass();
Students.setSection();
Students.payYourFees();
break;
}
case 'n':
{
break;
}
default:
break;
}
}
}
else
{
cout << "\n you entered wrong number again press \" 1 \ 2 \ 3 \" \n";
}
cout << "\n do you want to recall this program \n if yes than \" press y \" otherwise \"press n \"" << endl;
cin >> ch;
} while (ch == 'y' || ch == 'Y');
return 0;
}