C++学校运动会管理系统的实现

时间:2021-08-10 10:19:07

本文实例为大家分享了C++实现运动会管理系统的具体代码,供大家参考,具体内容如下

?
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
#include <iostream>
#include <cstdio>
#include <string>
#include <windows.h>
#include <set>
#include <map>
using namespace std;
const int MAXN = 100005;
typedef long long LL;
map< pair<string, string>, int> mtable;//男生参赛成绩
map< pair<string, string>, int> wtable;//女生参赛成绩
multimap<string, string> parti;//学号对应参赛项目
set <string> st;//有哪些学生学号
map<string, int> mitem;//参加该项目的女学生数
map<string, int> witem;//参加该项目的男学生数
map<string, int> item;//项目数参加人数
map<string, int> acad;//学院的总得分
map<string, int> macad;//学院男生得分
map<string, int> wacad;//学院女生得分
int cnt;
struct student
{
 string number;
 string name;
 string acad;
 string sex;
 int participate;
} stu[MAXN];
void menu()
{
 cout<<"**************系统菜单功能项*****************\n";
 cout<<"1.运动会报名\n";
 cout<<"2.参赛信息查询\n";
 cout<<"3.竞赛检录\n";
 cout<<"4.竞赛成绩录入\n";
 cout<<"5.竞赛成绩查询\n";
 cout<<"6.竞赛成绩排序\n";
 cout<<"7.退出程序\n";
 return ;
}
void apply()//报名
{
 system("cls");
 string s1,s2,s3,s4,s5;
 cout<<"请输入学生信息\n";
 cout<<"请分别输入学生所属学院名,学生姓名,学生学号, 学生性别,学生参加的项目名\n";
 cin>>s1>>s2>>s3>>s4>>s5;
 if(st.find(s3)==st.end())
 {
 stu[cnt].acad=s1;
 stu[cnt].name=s2;
 stu[cnt].number=s3;
 stu[cnt].sex=s4;
 stu[cnt++].participate++;
 st.insert(s3);
 }
 else
 {
 for(int i=0; i<cnt; ++i)
 {
  if(s3==stu[i].number)
  {
  if(stu[i].participate+1<=3)
   stu[i].participate++;
  else
  {
   printf("此学生已经报满3项,无法继续填报\n");
   return ;
  }
  }
 }
 }
 parti.insert(make_pair(s3,s5));
 acad.insert(make_pair(s1,0));
 item[s5]++;
 if(s4=="男")
 {
 mitem[s5]=mitem[s5]+1;
 macad.insert(make_pair(s1,0));
 mtable[pair<string, string>(s3,s5)]=0;
 }
 else
 {
 witem[s5]=witem[s5]+1;
 wacad.insert(make_pair(s1,0));
 wtable[pair<string, string>(s3,s5)]=0;
 }
 return ;
}
void query()//查询
{
 printf("信息查询的结果如下\n");
 for(int i=0; i<cnt; ++i)
 {
 cout<<"学生学号"<<stu[i].number<<" "<<"学生姓名"<<stu[i].name<<" "<<"学生性别"<<stu[i].sex<<" "<<"学生所属院系"<<stu[i].acad<<" "<<"学生参加项目数"<<stu[i].participate<<endl;;
 cout<<"同学姓名:"<<" "<<stu[i].name<<" "<<"参加了以下项目\n";
 multimap<string,string>::iterator it=parti.begin();
 for(; it!=parti.end(); it++)
 {
  if(it->first==stu[i].number)
  {
  cout<<it->second<<" ";
  }
 }
 cout<<"\n";
 }
 return ;
}
void registration()//检录
{
 system("cls");
 cout<<"请输入即将检录的比赛项目名字"<<endl;
 string s;
 cin>>s;
 cout<<"请一下同学前来检录"<<"\n";
 int flag=0;
 multimap<string, string>::iterator it = parti.begin();
 for(; it!=parti.end(); ++it)
 {
 if(it->second==s)
 {
  flag=1;
  cout<<it->first<<endl;
 }
 }
 if(!flag)
 cout<<"没有人报名该比赛\n"<<endl;
 return ;
}
void record()//录入成绩
{
 printf("请输入学生学号,和项目名字以及项目的名次\n");
 string s1,s2;
 int grade, ans=0;
 cin>>s1>>s2>>grade;
 for(int i=0; i<cnt; ++i)
 {
 if(stu[i].number==s1)
 {
  if(stu[i].sex=="男")
  {
  if(mitem[s2]>6)
  {
   if(grade==1)
   ans=7;
   else if(grade==2)
   ans=5;
   else if(grade==3)
   ans=3;
   else if(grade==4)
   ans=2;
   else if(grade==5)
   ans=1;
   else
   ans=0;
  }
  else
  {
   if(grade==1)
   ans=5;
   else if(grade==2)
   ans=3;
   else if(grade==3)
   ans=2;
   else
   ans=0;
  }
  macad[stu[i].acad]+=ans;
  mtable[pair<string,string>(s1,s2)]=ans;
  }
  else
  {
  if(witem[s2]>6)
  {
   if(grade==1)
   ans=7;
   else if(grade==2)
   ans=5;
   else if(grade==3)
   ans=3;
   else if(grade==4)
   ans=2;
   else if(grade==5)
   ans=1;
   else
   ans=0;
  }
  else
  {
   if(grade==1)
   ans=5;
   else if(grade==2)
   ans=3;
   else if(grade==3)
   ans=2;
   else
   ans=0;
  }
  wacad[stu[i].acad]+=ans;
  wtable[pair<string, string>(s1,s2)]=ans;
  }
  acad[stu[i].acad]+=ans;
 }
 }
}
void menu2()
{
 cout<<"1.按学院查看\n";
 cout<<"2.按参赛项目查看\n";
 cout<<"3.按参赛运动员查看\n";
 cout<<"4.退出\n";
 cout<<"请输入您的选择\n";
 return ;
}
void query_contest1()
{
 map<string, int>::iterator it=acad.begin();
 for(; it!=acad.end(); ++it)
 {
 cout<<"学院名字:"<<it->first<<endl;
 for(int i=0; i<cnt; ++i)
 {
  if(stu[i].acad==it->first)
  {
  multimap<string, string>::iterator iter=parti.begin();
  for(; iter!=parti.end(); ++iter)
  {
   if(stu[i].number!=iter->first)
   continue;
   if(stu[i].sex=="男")
   cout<<"姓名: "<<stu[i].name<<"项目: "<<iter->second<<"成绩: "<<mtable[pair<string,string>(iter->first,iter->second)]<<endl;
   else
   cout<<"姓名: "<<stu[i].name<<"项目: "<<iter->second<<"成绩: "<<wtable[pair<string,string>(iter->first,iter->second)]<<endl;
  }
  }
 }
 }
}
void query_contest2()
{
 map<string, int>::iterator it=item.begin();
 for(; it!=item.end(); it++)
 {
 cout<<"项目名称:"<<it->first<<endl;
 multimap<string, string>::iterator iter=parti.begin();
 for(; iter!=parti.end(); iter++)
 {
  if(iter->second==it->first)
  {
  for(int i=0; i<cnt; ++i)
  {
   if(iter->first==stu[i].number)
   {
   if(stu[i].sex=="男")
    cout<<"姓名: "<<stu[i].name<<"项目: "<<iter->second<<"成绩: "<<mtable[pair<string,string>(iter->first,iter->second)]<<endl;
   else
    cout<<"姓名: "<<stu[i].name<<"项目: "<<iter->second<<"成绩: "<<wtable[pair<string,string>(iter->first,iter->second)]<<endl;
   }
  }
  }
 }
 }
}
void query_contest3()
{
 for(int i=0; i<cnt; ++i)
 {
 cout<<"姓名: "<<stu[i].name<<"\n";
 multimap<string, string>::iterator iter=parti.begin();
 for(; iter!=parti.end(); iter++)
 {
  if(iter->first==stu[i].number)
  {
  if(stu[i].sex=="男")
   cout<<"项目: "<<iter->second<<"成绩: "<<mtable[pair<string,string>(iter->first,iter->second)]<<endl;
  else
   cout<<"项目: "<<iter->second<<"成绩: "<<wtable[pair<string,string>(iter->first,iter->second)]<<endl;
  }
 }
 }
}
void query_contest()//比赛成绩查询
{
 system("cls");
 menu2();
 int op;
 if(cnt==0)
 {
 printf("当前无人报名比赛,请先报名比赛\n");
 return ;
 }
 scanf("%d", &op);
 switch(op)
 {
 case 1:
 query_contest1();
 break;
 case 2:
 query_contest2();
 break;
 case 3:
 query_contest3();
 break;
 case 4:
 return;
 break;
 default:
 printf("输入有误,请重新输入\n");
 }
}
void sort_contest()//比赛成绩排序
{
 int Size=acad.size();
 for(int i=0; i<Size; ++i)
 {
 int Max=-1;
 string Maxs="";
 map<string, int >::iterator it = acad.begin();
 map<string, int >::iterator iter;
 for(; it!=acad.end(); ++it)
 {
  if(Max<it->second)
  {
  Max=it->second;
  Maxs=it->first;
  iter=it;
  }
 }
 acad.erase(iter);
 cout<<"学院名称:"<<Maxs<<" 学院总分:"<<Max<<endl;
 cout<<"男生总得分:"<<macad[Maxs]<<" 女生总得分"<<wacad[Maxs]<<endl;
 }
}
int main()
{
 int op;
 cout<<("**************学校运动会管理系统*****************\n");
// printf("请分别输入参赛学院个数,男子竞赛项目数和女子竞赛项目数\n");
// scanf("%d %d %d", &c, &n, &m);
// if(c<0||n<0||m<0)
// {
// printf("输入值有误,请重新输入\n");
// scanf("%d %d %d", &c, &n, &m);
// }
 cnt=0;
 while(1)
 {
 menu();
 scanf("%d", &op);
 switch(op)
 {
 case 1:
  apply();
  break;
 case 2:
  query();
  break;
 case 3:
  registration();
  break;
 case 4:
  record();
  break;
 case 5:
  query_contest();
  break;
 case 6:
  sort_contest();
  break;
 case 7:
  return 0;
  break;
 default:
  cout<<"错误输入, 请重新输入\n";
  break;
 }
 }
 return 0;
}

效果图:

C++学校运动会管理系统的实现

C++学校运动会管理系统的实现

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/fanhansheng/article/details/80712439?utm_source=blogxgwz2