課程設計 C語言 學生成績管理系統

學生成績管理系統數組

tips : 應該寫的註釋都寫了,適合初學者參考。
某班最多不超過30人(具體人數由鍵盤輸入),考試科目最多不超過6門(具體門數由鍵盤輸入)。ide

請編寫一個程序實現以下菜單驅動的學生成績管理系統;要求:
(1)錄入每一個學生 的學號、姓名和各科考試成績。
(2)計算每門課程的總分和平均分。
(3)計算每一個學生的總分和平均分。
(4)按每一個學生的總分由高到低排出名次表。
(5)按學號由小到大排出成績表。
(6)按姓名的字典順序排出成績表。
(7)按學號查詢學生排名及各科考試成績。
(8)按姓名查詢學生排名及各科考試成績。
(9)按優秀(90~100)、良好(80~89)、中等(70~79)、及格(60~69)、不及格(0~59)5個類別,對每門課程分別統計每一個類別的人數及所佔的百分比。
(10)輸出每一個學生的學號、姓名、各科考試成績、總分、平均分,以及每門課程的總分和平均分。函數

code(可直接運行):spa

  1 #define  _CRT_SECURE_NO_WARNINGS
  2 #include <stdio.h>
  3 #include <string.h>
  4 #include<stdlib.h>
  5 
  6 struct Course {
  7     int C_score;
  8     char C_name[10];
  9 };
 10 struct Stu {
 11     int id;
 12     char name[10];
 13     struct Course courses[6];
 14     int total_score;
 15     int ave;
 16     int ranking;
 17 };
 18 struct Stu stu[30];
 19 int real_stu;
 20 int real_cou;
 21 int temp[30] = { 0 };
 22 int temp_forFun7[30] = { 0 };    //這裏在函數5中修改了 temp ,可是fun7 要用,因此但copy出來一個。
 23 int C_total_score[6] = { 0 };
 24 int C_ave[6] = { 0 };
 25 
 26 enum level {
 27     優秀 = 0, 良好, 中等, 及格, 不及格
 28 };
 29 
 30 int getRanking(int id);
 31 struct Stu* getStu(int id);
 32 char* getLevel(int num);
 33 
 34 int fun0();
 35 int fun1();
 36 int fun2();
 37 int fun3();
 38 int fun4();
 39 int fun5();
 40 int fun6();
 41 int fun7();
 42 int fun8();
 43 int fun9();
 44 int fun10();
 45 int main()
 46 {
 47     while (1) {
 48         //輸入數字幾,則運行程序幾
 49         switch (fun0()) {
 50         case  0: exit(0); break;
 51         case  1: fun1(); break;
 52         case  2: fun2(); break;
 53         case  3: fun3(); break;
 54         case  4: fun4(); break;
 55         case  5: fun5(); break;
 56         case  6: fun6(); break;
 57         case  7: fun7(); break;
 58         case  8: fun8(); break;
 59         case  9: fun9(); break;
 60         case 10: fun10(); break;
 61         case 11:/*fun11()*/; break;
 62         }
 63     }
 64 
 65     return 0;
 66 }
 67 
 68 
 69 //0菜單
 70 int fun0() {
 71     //菜單
 72     int n;
 73     printf("*******************************************************\n");
 74     printf("1. 錄入每一個學生 的學號、姓名和各科考試成績.\n");
 75     printf("2. 計算每門課程的總分和平均分。\n");
 76     printf("3. 計算每一個學生的總分和平均分。\n");
 77     printf("4. 按每一個學生的總分由高到低排出名次表。\n");
 78     printf("5. 按學號由小到大排出成績表。\n");
 79     printf("6. 按姓名的字典順序排出成績表。\n");
 80     printf("7. 按學號查詢學生排名及各科考試成績。\n");
 81     printf("8. 按姓名查詢學生排名及各科考試成績。\n");
 82     printf("9. 按優秀(90~100)、良好(80~89)、中等(70~79)、及格(60~69)、不及格(0~59)5個類別,對每門課程分別統計每一個類別的人數及所佔的百分比。\n");
 83     printf("10.輸出每一個學生的學號、姓名、各科考試成績、總分、平均分,以及每門課程的總分和平均分。\n");
 84     printf("0. Exit\n");
 85     printf("*******************************************************\n");
 86     printf("    Please enter your choice :\n");
 87     scanf_s("%d", &n);
 88     return n;
 89 }
 90 
 91 //1,錄入每一個學生的學號、姓名和各科考試成績。
 92 int fun1() {
 93     //(1)錄入每一個學生的學號、姓名和各科考試成績。
 94     printf("請輸入總人數(不超過30人):");
 95     scanf("%d", &real_stu);
 96     printf("請輸入總課程數(不超過6門):");
 97     scanf("%d", &real_cou);
 98 
 99     //(1)錄入、每一個 學生 的學號、姓名和各科考試成績。
100     for (int i = 0; i < real_stu; i++) {//錄入第 i 個學生信息:學號 姓名。
101         printf("請輸入第 %d 個學生的信息  ( 輸入格式提示 例如:[學號 姓名] 中括號裏面的爲一次錄入,不用寫中括號。)\n", i + 1);
102         scanf("%d %s", &(stu[i].id), stu[i].name);
103 
104         printf("請輸入須要錄入課程的信息  ( 輸入格式提示 例如:[課程名字 課程分數] 中括號裏面的爲一次錄入,不用寫中括號。)\n");
105         for (int j = 0; j < real_cou; j++) {//錄入第 i 個學生課程信息:課程名字 分數。
106             scanf("%s %d", stu[i].courses[j].C_name, &(stu[i].courses[j].C_score));
107         }
108     }
109     return 0;
110 }
111 
112 //2,計算每門課程的總分和平均分
113 int fun2() {
114     //(2)計算每門課程的總分和平均分
115 
116     for (int i = 0; i < real_stu; i++) {
117         for (int j = 0; j < real_cou; j++) {
118             C_total_score[j] += stu[i].courses[j].C_score;
119         }
120     }
121     for (int i = 0; i < real_stu; i++) {
122         C_ave[i] = C_total_score[i] / real_stu;//第i門課的平均分
123     }
124     //最後不用print
125     for (int i = 0; i < real_cou; i++) {
126         printf("%d  %d\n", C_total_score[i], C_ave[i]);
127 
128     }
129     return 0;
130 }
131 
132 //3,計算每一個學生的總分和平均分。
133 int fun3() {
134     //(3)計算每一個學生的總分和平均分。
135     for (int i = 0; i < real_stu; i++) {//第幾個學生
136         for (int j = 0; j < real_cou; j++) {//第幾門課
137             stu[i].total_score += stu[i].courses[j].C_score;
138         }
139     }
140     for (int i = 0; i < real_cou; i++) {
141         stu[i].ave = stu[i].total_score / real_cou;
142     }
143     for (int i = 0; i < real_stu; i++) {
144         printf("第%d個學生的總分爲%d\n", i + 1, stu[i].total_score);
145         printf("第%d個學生的平均分爲 % d\n", i + 1, stu[i].ave);
146     }
147     return 0;
148 }
149 
150 //4,按每一個學生的總分由高到低排出名次表。
151 int fun4() {
152     //(4)按每一個學生的總分由高到低排出名次表。
153     for (int i = 0; i < real_stu; i++) {
154         temp[i] = stu[i].id;    //建立數組,存id,經過id找到信息
155     }
156     int temp_for_swap = 0;
157     //排序
158     for (int i = 0; i < real_stu - 1; i++) {//輪次,n-1次
159         for (int j = 0; j < real_stu - i - 1; j++) {//一次排序
160             if (getStu(temp[j])->total_score < getStu(temp[j + 1])->total_score) {
161                 //交換 temp[i] temp[i+1]
162                 //t_temp,爲中間做爲交換的數組,存放id
163                 //temp數組爲存放id數組
164                 temp_for_swap = temp[j];
165                 temp[j] = temp[j + 1];
166                 temp[j + 1] = temp_for_swap;
167             }
168         }
169     }
170     //輸出
171     printf("按每一個學生的總分由高到低排出的名次表爲\n");
172     for (int i = 0; i < real_stu; i++) {
173         printf("%d %s %d\n", getStu(temp[i])->id, getStu(temp[i])->name, getStu(temp[i])->total_score);
174     }
175     //這裏在函數5中修改了 temp ,可是fun7 要用,因此但copy出來一個。
176     memcpy(temp_forFun7,temp,real_stu);
177     return 0;
178 
179 }
180 
181 //5,按學號由小到大排出成績表。
182 int fun5() {
183     //(5)按學號由小到大排出成績表。
184     //排序,學號大小,也就是說,輸入不必定按學號從小到大輸入
185     int temp_for_swap = 0;
186     //排序
187     for (int i = 0; i < real_stu - 1; i++) {//輪次,n-1次
188         for (int j = 0; j < real_stu - i - 1; j++) {//一次排序
189             if (getStu(temp[j])->id > getStu(temp[j + 1])->id) {
190                 //交換 temp[i] temp[i+1]
191                 //t_temp,爲中間做爲交換的數組,存放id
192                 //temp數組爲存放id數組
193                 temp_for_swap = temp[j];
194                 temp[j] = temp[j + 1];
195                 temp[j + 1] = temp_for_swap;
196             }
197         }
198     }
199     printf("按每一個學生的按學號由小到大排出成績表爲\n");
200     for (int i = 0; i < real_stu; i++) {
201         printf("%d %s %d\n", getStu(temp[i])->id, getStu(temp[i])->name, getStu(temp[i])->total_score);
202     }
203     return 0;
204 }
205 
206 //6,按姓名的字典順序排出成績表。
207 int fun6() {
208     //(6)按姓名的字典順序排出成績表。
209     //字典順序,成績表
210     //字符串比較
211     int temp_for_swap = 0;
212     for (int i = 0; i < real_stu - 1; i++) {
213         for (int j = 0; j < real_stu - i - 1; j++) {
214             if (strcmp(getStu(temp[j])->name, getStu(temp[j + 1])->name) > 0) {
215                 temp_for_swap = temp[j];
216                 temp[j] = temp[j + 1];
217                 temp[j + 1] = temp_for_swap;
218             }
219         }
220     }
221     //print
222     printf("按學生姓名的字典順序排出成績表爲\n");
223     for (int i = 0; i < real_stu; i++) {
224         printf("%d %s %d\n", getStu(temp[i])->id, getStu(temp[i])->name, getStu(temp[i])->total_score);
225     }
226     return 0;
227 }
228 //7,按學號查詢學生排名及各科考試成績。
229 
230 int fun7() {
231     //按學號查詢學生排名及各科考試成績。
232     for (int i = 0; i < real_stu; i++) {
233         getStu(temp_forFun7[i])->ranking = getRanking(temp_forFun7[i]);//排名,由get函數初始化
234     }
235     int input_id;
236     printf("請輸入須要查詢成績的學生的學號:");
237     scanf("%d", &input_id);
238 
239     struct Stu* hit_stu = getStu(input_id);//把用getStu函數找到的學生信息,給hit——stu
240 
241     printf("學號爲%d的學生是%s\n", hit_stu->id, hit_stu->name);
242     printf("排名爲%d\n", hit_stu->ranking + 1);
243     printf("其各科成績爲:\n");
244     for (int i = 0; i < real_cou; i++) {
245         printf("%s %d\n", hit_stu->courses[i].C_name, hit_stu->courses[i].C_score);
246     }
247     return 0;
248 }
249 //8,按姓名查詢學生排名及各科考試成績。
250 int fun8() {
251     //(8)按姓名查詢學生排名及各科考試成績。
252     char input_name[10] = { 0 };
253     printf("請輸入須要查詢成績的學生的姓名:");
254     scanf("%s", input_name);
255 
256     struct Stu* hit_stu = NULL;
257     for (int i = 0; i < real_stu; i++) {
258         if (strcmp(hit_stu->name, input_name) == 0) {
259             hit_stu = &stu[i];
260         }
261     }
262     if (hit_stu == NULL) {
263         printf("姓名爲%s的學生不存在\n", input_name);
264         return;
265     }
266 
267     printf("學號爲%d的學生是%s\n", hit_stu->id, hit_stu->name);
268     printf("排名爲%d\n", hit_stu->ranking + 1);
269     printf("其各科成績爲:\n");
270     for (int i = 0; i < real_stu; i++) {
271         printf("%s %d\n", hit_stu->courses[i].C_name, hit_stu->courses[i].C_score);
272     }
273     return 0;
274 }
275 //(9)按優秀(90~100)、良好(80~89)、中等(70~79)、及格(60~69)、不及格(0~59)5個類別,對每門課程分別統計每一個類別的人數及所佔的百分比。,switch語句,除以總人數,而後打印
276 int fun9() {
277 
278     //(9)按優秀(90~100)、良好(80~89)、中等(70~79)、及格(60~69)、不及格(0~59)5個類別,
279 //對每門課程分別統計 每一個類別的人數及所佔的百分比。,除以總人數,而後打印
280     //等價於 int type [][];
281     // type[ 第幾門課 ] [ 該課的類別 ]
282     //int** type = (int**)malloc(sizeof(int) * 5 * real_cou);
283     float type[6][5] = {0};
284     for (int i = 0; i < real_stu; i++) {
285         for (int j = 0; j < real_cou; j++) {
286             //type[i][j];
287             int temp_score = stu[i].courses[j].C_score;
288             if (temp_score >= 0 && temp_score < 59) {
289                 type[j][不及格] += 1;//bad
290             }
291             else if (temp_score >= 60 && temp_score < 69) {
292                 type[j][及格] += 1;//及格
293             }
294             else if (temp_score >= 70 && temp_score < 79) {
295                 type[j][中等] += 1;//中等
296             }
297             else if (temp_score >= 80 && temp_score < 89) {
298                 type[j][良好] += 1;//良好
299             }
300             else if (temp_score >= 90 && temp_score < 100) {
301                 type[j][優秀] += 1;//優秀
302             }
303         }
304     }
305 
306     //float** ratio = (float**)malloc(sizeof(float) * 5 * real_cou);
307     float ratio[6][5] = { 0.0 };
308 
309     for (int i = 0; i < real_cou; i++)
310     {
311         for (int j = 0; j < 5; j++)
312         {
313             ratio[i][j] = type[i][j] / real_stu;
314         }
315 
316     }
317 
318     //print
319     for (int i = 0; i < real_cou; i++)
320     {
321         printf("第 %d 課程的各等級佔比爲:\n", i);
322         for (int j = 0; j < 5; j++)
323         {
324             printf("\t\t %s 佔比 %f: \n", getLevel(j), ratio[i][j]);
325         }
326 
327     }
328 
329     return 0;
330 }
331 //(10)輸出每一個學生的學號、姓名、各科考試成績、總分、平均分,以及每門課程的總分和平均分。
332 int fun10() {
333     for (int i = 0; i < real_stu; i++)
334     {
335         printf("姓名爲%s\t學號爲%d\t學生總分爲%d\t平均分爲%d\n", getStu(temp[i])->name, getStu(temp[i])->id, getStu(temp[i])->total_score, getStu(temp[i])->ave);
336         for (int j = 0; j < real_cou; j++) {
337             printf("\t科目爲:%s \t考試成績爲: %d\t科目總分: %d\t科目平均分 :%d 。\n", 
338                 getStu(temp[i])->courses[j].C_name, getStu(temp[i])->courses[j].C_score, C_total_score[i], C_ave[i]);
339         }
340     }
341     return 0;
342 }
343 
344 int getRanking(int id) {
345     for (int i = 0; i < real_stu; i++) {
346         if (id == temp[i]) {
347             return i;//i即爲排名
348         }
349     }
350 }
351 struct Stu* getStu(int id) {
352     for (int i = 0; i < real_stu; i++)
353     {
354         if (stu[i].id == id) {
355             return &stu[i];
356         }
357     }
358     return NULL;
359 }
360 
361 char* getLevel(int num) {
362     //enum level {
363     //    優秀 = 0, 良好, 中等, 及格, 不及格
364     //};
365     switch (num)
366     {
367     case 0:
368 
369         return "優秀";
370     case 1:
371 
372         return "良好";
373     case 2:
374 
375         return "中等";
376     case 3:
377 
378         return "及格";
379     case 4:
380 
381         return "不及格";
382     default:
383         return "unknown";
384     }
385 }
View Code
相關文章
相關標籤/搜索