-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExp9.c
371 lines (349 loc) · 7.66 KB
/
Exp9.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
#include<stdio.h>
#include<windows.h>
//函数声明
void Menu();
int InputRecord(long int a[], float b[], int *point);
int Calculate(float b[], int i);
void Search(long int student[], float score[], int k);
int ListRecord(long int student[], float score[], int k);
void Analyze(float score[], int k);
void FindMax(long int student[], float score[], int k);
int SelectionSort(long int student[], float score[], int k, int (*Compare)(float a, float b));
int Ascending(float a, float b);
int Descending(float a, float b);
void ExchangeFloat(float *x, float *y);
void ExchangeLong(long int *x, long int *y);
void WaitingTime();
int NumbDescending(long int a, long int b);
int NumbSelectionSort(long int student[], float score[], int k, int (*Compare)(long int a, long int b));
int main(void)
{
long int student[31]; //学号 31个,如果输入30个人,需要给-1留个位置
float score[31]; //分数
int k = 0; //记录录入的人数,值为人数-1,即数组脚标
int menunumb = 0;
int sum = 0;
int *point = 0; //从此到下第三行,用来续加学生
int empty = 0;
point = ∅
double average = 0.0;
int freeze; //用来延迟的变量
//菜单函数,打印菜单。
Menu();
scanf("%d",&menunumb);
printf("\n");
//根据输入序号调用函数。
while(menunumb != 0)
{
switch(menunumb)
{
case 1: k = InputRecord(student, score, point);
while(k == 0) //防止未输如学号和成绩造成程序出错
{
printf("请先输入学号和成绩或至少输入两名同学的数据\n");
k = InputRecord(student, score, point);
}
break;
case 2: sum = Calculate(score,k);
printf("总分为:%d\n",sum);
average = sum/(k+1.0);
printf("平均分为:%f\n",average);
printf("\n");
break;
case 3: SelectionSort(student, score, k, Descending);
printf("\n");
break;
case 4: SelectionSort(student, score, k, Ascending);
printf("\n");
break;
case 5: Search(student, score, k);
break;
case 6: Analyze(score, k);
printf("\n");
break;
case 7: sum = ListRecord(student, score, k);
printf("总分为:%d\n",sum);
average = sum/(k+1.0);
printf("平均分为:%f\n",average);
printf("\n");
break;
case 8: FindMax(student, score, k);
printf("\n");
break;
case 0: exit(0);
}
if(menunumb<0 || menunumb >8)
{
printf("Wrong input!Try againg!\n");
printf("\n");
}
//延迟显示菜单
printf("----------------------------------------\n");
//最后一步,再选择功能
Menu();
scanf("%d",&menunumb);
printf("\n");
}
system("pause");
return 0;
}
void Menu()
{
printf("1.Input record(输入学号和成绩)\n");
printf("2.Calculate total and average score of course(计算总成绩和平均分)\n");
printf("3.Sort in descending order by score(降序排列成绩)\n");
printf("4.Sort in ascending order by number(升序排列成绩)\n");
printf("5.Search by number(通过学号查找成绩)\n");
printf("6.Statistic analysis(成绩分析)\n");
printf("7.List record(列出所有成绩)\n");
printf("8.Find top1(查询第一名)\n");
printf("0.Exit(退出)\n");
printf("提示:输入\"-1\"结束录入成绩或学号\n");
printf("根据菜单相应序号来选择功能:\n");
}
int InputRecord(long int a[],float b[], int *point)
{
int i = *point;
int k = 0;
for(;i<30;i++)
{
printf("请输入学号:");
scanf("%ld",&a[i]);
if(a[i] != -1)
{
printf("请输入成绩:");
scanf("%f",&b[i]);
}
else
{
b[i] = -1;
}
if((a[i] == -1)||(b[i] == -1))
{
printf("\n");
break;
}
k = i;
}
*point = k + 1;
return k;
}
int Calculate(float b[],int i)
{
int a;
int sum = 0;
double average = 0;
for(a=0;a<=i;a++)
{
sum += b[a];
}
return sum;
}
int SelectionSort(long int student[], float score[], int k, int (*Compare)(float a, float b))
{
int next = 0;
int present;
int record;
for(present = 0;present <= k; present++)
{
record = present;
for(next = present + 1; next <= k; next++)
{
if((*Compare)(score[next], score[record]))
{
record = next;
}
}
if(record != present)
{
ExchangeFloat(&score[present], &score[record]);
ExchangeLong(&student[present], &student[record]);
}
}
}
int NumbSelectionSort(long int student[], float score[], int k, int (*Compare)(long int a, long int b))
{
int next = 0;
int present;
int record;
for(present = 0;present <= k; present++)
{
record = present;
for(next = present + 1; next <= k; next++)
{
if((*Compare)(student[next], student[record]))
{
record = next;
}
}
if(record != present)
{
ExchangeFloat(&score[present], &score[record]);
ExchangeLong(&student[present], &student[record]);
}
}
}
int Ascending(float a, float b)
{
return (a < b);
}
int Descending(float a, float b)
{
return (a > b);
}
int NumbDescending(long int a, long int b)
{
return (a > b);
}
void Search(long int student[],float score[],int k)
{
int high=k,mid,low= 0;
long stu_numb;
int count = 0;
int recordscore = 0;
printf("请输入查询的学号:");
scanf("%ld",&stu_numb);
printf("\n");
NumbSelectionSort(student, score, k, NumbDescending);
while(low<=high)
{
mid = (high+low)/2;
if(stu_numb < student[mid])
{
low = mid + 1;
}
else if(stu_numb > student[mid])
{
high = mid - 1;
}
else
{
count = 1;
low = 0;
high = k;
recordscore = score[mid];
SelectionSort(student, score, k, Descending);
while(low <= high)
{
mid = (high+low)/2;
if(recordscore < score[mid])
{
low = mid + 1;
}
else if(recordscore > score[mid])
{
high = mid - 1;
}
else
{
printf("排名为:%d\n", mid+1);
printf("成绩为:%f\n", score[mid]);
printf("\n");
break;
}
}
}
if(count == 1)
{
break;
}
}
}
int ListRecord(long int student[],float score[],int k)
{
int i;
int sum = 0;
printf("学号\t\t\t");
printf("成绩\n");
for(i=0;i<=k;i++)
{
printf("%d\t\t\t",student[i]);
printf("%f\n",score[i]);
}
printf("\n");
sum = Calculate(score,k);
return sum;
}
void Analyze(float score[],int k)
{
int a=0,b=0,c=0,d=0,e=0;
double count = 0.0;
int i;
for(i=0;i<=k;i++)
{
if(score[i]>=90 && score[i]<=100)
{
a++;
}
else if(score[i]>=80 && score[i]<=89)
{
b++;
}
else if(score[i]>=70 && score[i]<=79)
{
c++;
}
else if(score[i]>=60 && score[i]<=69)
{
d++;
}
else if(score[i]>=0 && score[i]<=59)
{
e++;
}
}
count = (a/(k+1.0))*100;
printf("优秀人数:%d\n",a);
printf("优秀比率:%.2f%%\n",count);
count = 0;
count = (b/(k+1.0))*100;
printf("良好人数:%d\n",b);
printf("良好比率:%.2f%%\n",count);
count = 0;
count = (c/(k+1.0))*100;
printf("中等人数:%d\n",c);
printf("中等比率:%.2f%%\n",count);
count = 0;
count = (d/(k+1.0))*100;
printf("及格人数:%d\n",d);
printf("及格比率:%.2f%%\n",count);
count = 0;
count = (e/(k+1.0))*100;
printf("不及格人数:%d\n",e);
printf("不及格比率:%.2f%%\n",count);
}
void FindMax(long int student[], float score[], int k)
{
SelectionSort(student, score, k, Descending);
printf("Top 1 is:\nNumb %d\t\tScore %f\n",student[0],score[0]);
}
void ExchangeLong(long int *x, long int *y)
{
long int z;
z = *x;
*x = *y;
*y = z;
}
void ExchangeFloat(float *x, float *y)
{
float z;
z = *x;
*x = *y;
*y = z;
}
void WaitingTime()
{
int i;
for(i = 0; i <200000000; i++);
printf(".");
for(i = 0; i <200000000; i++);
printf(".");
for(i = 0; i <200000000; i++);
printf(".");
for(i = 0; i <200000000; i++);
printf(".");
for(i = 0; i <200000000; i++);
printf(".");
for(i = 0; i <200000000; i++);
printf(".\n\n");
}