-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
85 lines (74 loc) · 2.4 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
#include <iostream>
#include "Student.h"
using namespace std;
#define MAX_STUDENT 100 // Max number of students supported
int menuSelection(void);
int main()
{
int select, i;
int sid;
string option ;
int count = 0;
Student stud[MAX_STUDENT];
do{
select = menuSelection();
switch(select)
{
case 1:
for(int i=0; i<MAX_STUDENT; ++i)
{
//Function call to register a Student
stud[i].registerStudent();
//Tracks the count of the students entered
count++;
//Condition to provide user with a choice to enter another user
cout<<"Do you want to Enter another Student? [Y/N]";
getline(cin>>ws, option);
if (option == "Y" || option == "y" || option == "Yes")
{
continue;
}
else if (option == "N" || option == "n" || option == "No"){
break;
}
}
break;
case 2:
//Displays the number of registered students
cout<<count<<" registered student(s) found!\n\n";
for(int i=0; i<count; ++i)
{
//Function call to print all the registered students
stud[i].printStudent(count);
}
break;
case 3:
cout << "Please input the id that needs to be searched:";
cin >> sid;
for(int i=0; i<count; ++i)
{
//Function call to search a student by id
stud[i].searchStudent(sid);
}
break;
case 4:
cout<<"Good Bye!!!"<<endl;
break;
default:
cout<<"ERROR: invalid selection try again!!!"<<endl;
}
}while(select !=4);
return 0;
}
int menuSelection(void)
{
int select;
cout<<"\t\tStudent System" << endl;
cout<<"1. Register a new student" << endl;
cout<<"2. Print student list" << endl;
cout<<"3. Find student by ID" << endl;
cout<<"4. Quit" << endl;
cout<<"Select:";
cin>>select;
return select;
}