-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudent Management System(Project 1).cpp
216 lines (201 loc) · 4.19 KB
/
Student Management System(Project 1).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
#include <iostream>
using namespace std;
string arr1[20],arr2[20],arr3[20],arr4[20],arr5[20];
int total=0;
void enter()
{
int ch=0;
cout<<"How many students do you enter?"<<endl;
cin>>ch;
if(total==0)
{
total=ch+total;
for(int i=0;i<ch;i++)
{
cout<<"\nEnter the data of the student: "<<i+1<<endl<<endl;
cout<<"Enter name: "<<endl;
cin>>arr1[i];
cout<<"Enter roll no: "<<endl;
cin>>arr2[i];
cout<<"Enter course: "<<endl;
cin>>arr3[i];
cout<<"Enter class: "<<endl;
cin>>arr4[i];
cout<<"Enter contact: "<<endl;
cin>>arr5[i];
}
}
else {
for(int i=total;i<ch+total;i++)
{
cout<<"\nEnter the data of student: "<<i+1<<endl<<endl;
cout<<"Enter name";
cin>>arr1[i];
cout<<"Enter roll no: "<<endl;
cin>>arr2[i];
cout<<"Enter course: "<<endl;
cin>>arr3[i];
cout<<"Enter class: "<<endl;
cin>>arr4[i];
cout<<"Enter contact: "<<endl;
cin>>arr5[i];
}
total=ch+total;
}
}
void show()
{
if(total==0)
{
cout<<"No data is entered"<<endl;
}
else {
for(int i=0;i<total;i++)
{
cout<<"\nData of the student"<<i+1<<endl<<endl;
cout<<"Name"<<arr1[i]<<endl;
cout<<"Roll no"<<arr2[i]<<endl;
cout<<"Course"<<arr3[i]<<endl;
cout<<"Class"<<arr4[i]<<endl;
cout<<"Contact"<<arr5[i]<<endl;
}
}
}
void search()
{
if(total==0)
{
cout<<"No data is found"<<endl;
}
else {
string rollno;
cout<<"Enter the roll no. of the student: "<<endl;
cin>>rollno;
for(int i=0;i<total;i++)
{
if(rollno==arr2[i])
{
cout<<"Name"<<arr1[i]<<endl;
cout<<"Roll no"<<arr2[i]<<endl;
cout<<"Course"<<arr3[i]<<endl;
cout<<"Class"<<arr4[i]<<endl;
cout<<"Contact"<<arr5[i]<<endl;
}
}
}
}
void update()
{
if(total==0)
{
cout<<"No data is entered"<<endl;
}
else {
string rollno;
cout<<"Enter the roll no. of the student which you want to update: "<<endl;
cin>>rollno;
for(int i=0;i<total;i++)
{
if(rollno==arr2[i])
{
cout<<"\nPrevious data"<<endl<<endl;
cout<<"Data of the student"<<i+1<<endl;
cout<<"Name"<<arr1[i]<<endl;
cout<<"Roll no"<<arr2[i]<<endl;
cout<<"Course"<<arr3[i]<<endl;
cout<<"Class"<<arr4[i]<<endl;
cout<<"Conatct"<<arr5[i]<<endl;
cout<<"\nEnter new data"<<endl<<endl;
cout<<"Enter name";
cin>>arr1[i];
cout<<"Enter Roll no";
cin>>arr2[i];
cout<<"Enter course";
cin>>arr3[i];
cout<<"Enter class";
cin>>arr4[i];
cout<<"Enter contact";
cin>>arr5[i];
}
}
}
}
void deleterecord()
{
if(total==0)
{
cout<<"No data is entered"<<endl;
}
else {
int a;
cout<<"Press 1 to delete all record"<<endl;
cout<<"Press 2 to delete specific record"<<endl;
cin>>a;
if(a==1){
total=0;
cout<<"All record is deleted."<<endl;
}
else if(a==2){
string rollno;
cout<<"Enter the roll no. of student which you wanted to delete"<<endl;
cin>>rollno;
for(int i=0;i<total;i++)
{
if(rollno==arr2[i])
{
for(int j=1;j<total;j++)
{
arr1[j]=arr1[j+1];
arr2[j]=arr2[j+1];
arr3[j]=arr3[j+1];
arr4[j]=arr4[j+1];
arr5[j]=arr5[j+1];
}
total--;
cout<<"Your required record is deleted"<<endl;
}
}
}
else {
cout<<"Invalid input";
}
}
}
main()
{
int value;
while(true)
{
cout<<"\nPress 1 to enter the data"<<endl;
cout<<"Press 2 to show the data"<<endl;
cout<<"Press 3 to search the data"<<endl;
cout<<"Press 4 to update the data"<<endl;
cout<<"Press 5 to delete the data"<<endl;
cout<<"Press 6 to exit"<<endl;
cin>>value;
switch(value)
{
case 1:
enter();
break;
case 2:
show();
break;
case 3:
search();
break;
case 4:
update();
break;
case 5:
deleterecord();
break;
case 6:
exit(0);
break;
default:
cout<<"Invalid input"<<endl;
break;
}
}
}