1. 程式人生 > 其它 >實驗6 Jacky's npy

實驗6 Jacky's npy

  1 #include<stdio.h>
  2 #include<stdlib.h>
  3 #include<string.h> 
  4 #define N 3        // 執行程式輸入測試時,可以把N改小一些輸入測試 
  5 
  6 typedef struct student {
  7     int id;             /*學生學號 */ 
  8     char name[20];         /*學生姓名 */ 
  9     char subject[20];     /*考試科目 */ 
 10     float perf;         /*
平時成績 */ 11 float mid; /* 期中成績 */ 12 float final; /* 期末成績 */ 13 float total; /* 總評成績 */ 14 char level[10]; /* 成績等級 */ 15 } STU; 16 17 void input(STU[],int ); /*輸入學生資訊 */ 18 void calc(STU[],int); /*計算總評和等級 */ 19 int fail(STU[],STU [],int
); /*不及格學生統計 */ 20 void sort(STU[],int); /*排序 */ 21 void print(STU[], int); /*輸出學生資訊*/ 22 23 int main() { 24 STU st[N],fst[N]; // 陣列st記錄學生資訊,fst記錄不及格學生資訊 25 int k; // 用於記錄不及格學生個數 26 27 printf("錄入學生成績資訊:\n"); 28 input(st,N); 29 30 printf("
\n成績處理...\n"); 31 calc(st,N); 32 33 k = fail(st,fst,N); 34 sort(st, N); 35 printf("\n學生成績排名情況:\n"); 36 print(st, N); 37 38 printf("\n不及格學生資訊:\n"); 39 print(fst, k); 40 41 return 0; 42 } 43 44 // 輸入學生資訊 45 void input(STU s[],int n) { 46 int i; 47 for(i=0;i<n;i++) 48 scanf("%d %s %s %f %f %f",&s[i].id,s[i].name,s[i].subject,&s[i].perf,&s[i].mid,&s[i].final); 49 } 50 51 // 計算總評和等級 52 void calc(STU s[],int n) { 53 int i; 54 for(i=0;i<n;i++) { 55 s[i].total=s[i].perf*0.2+s[i].mid*0.2+s[i].final*0.6; 56 57 if(s[i].total>=90) 58 strcpy(s[i].level,""); // 注意:等級是字元型陣列,要使用strcpy完成賦值 59 else if(s[i].total>=80 && s[i].total<90) 60 strcpy(s[i].level,""); 61 else if(s[i].total>=70 && s[i].total<80) 62 strcpy(s[i].level,""); 63 else if(s[i].total>=60 && s[i].total<70) 64 strcpy(s[i].level,"及格"); 65 else 66 strcpy(s[i].level,"不及格"); 67 } 68 } 69 70 // 不及格學生統計 71 // 陣列s存放的是所有學生資訊,陣列t存放不及格學生資訊,n是陣列s中元素個數 72 // 函式返回值:返回的是不及格人數 73 int fail(STU s[],STU t[],int n) { 74 int i,k=0; 75 76 for(i=0;i<n;i++) 77 if(s[i].total<60) 78 t[k++]=s[i]; 79 80 return k; 81 } 82 83 // 根據總評成績對學生記錄資訊排序 84 // 使用的是氣泡排序演算法 85 void sort(STU s[],int n) { 86 int i,j; 87 STU temp; 88 89 for(i=0;i<n-1;i++) 90 for(j=0;j<n-1-i;j++) 91 if(s[j].total<s[j+1].total) { 92 temp = s[j]; 93 s[j] = s[j+1]; 94 s[j+1] = temp; 95 } 96 } 97 98 // 輸出學生資訊 99 void print(STU s[], int n) { 100 int i; 101 102 printf("-----------------\n"); 103 printf("學號 姓名 考試科目 平時成績 期中成績 期末成績 總評成績 成績等級\n"); 104 for(i=0;i<n;i++) 105 printf("%5d %10s%20s %5.1f %5.1f %5.1f %5.1f %10s\n",s[i].id,s[i].name,s[i].subject,s[i].perf,s[i].mid,s[i].final,s[i].total,s[i].level); 106 }
 1 #include <stdio.h>
 2 
 3 const int N=5;
 4 
 5 // 定義結構體型別struct student,並定義STU為其別名 
 6 typedef struct student {
 7     long no;
 8     char name[20];
 9     int score;     
10 }STU;
11 
12 // 函式宣告 
13 void input(STU s[], int n);
14 int findMinlist(STU s[], STU t[], int n);
15 void output(STU s[], int n);
16 
17 int main() {
18     STU stu[N], minlist[N];
19     int count;
20     
21     printf("錄入%d個學生資訊\n", N);
22     input(stu, N);
23     
24     printf("\n統計最低分人數和學生資訊...\n");
25     count = findMinlist(stu, minlist, N);
26     
27     printf("\n一共有%d個最低分,資訊如下:\n", count);
28     output(minlist, count);
29      
30     return 0;
31 } 
32 
33 // 輸入n個學生資訊,存放在結構體陣列s中 
34 void input(STU s[], int n) {
35     int i;
36     for(i=0; i<n; i++) 
37         scanf("%ld %s %d", &s[i].no, s[i].name, &s[i].score);
38 } 
39 
40 // 輸出結構體s中n個元素資訊
41 void output(STU s[], int n) {
42     int i;
43     for(i=0; i<n; i++)
44         printf("%ld %s %d\n", s[i].no, s[i].name, s[i].score); 
45 } 
46 
47 // 在結構體陣列s中,查詢最低分學生的記錄,將其存入結構體陣列t中
48 // 形參n是結構體陣列s中元素個數
49 // 函式返回最低分的學生人數 
50 int findMinlist(STU s[], STU t[], int n) {
51     // 補足函式實現
52     int temp,i,j=0;
53     temp=s[0].score;
54     for(i=0;i<n-1;i++){
55         
56         if(temp>=s[i+1].score){
57             temp=s[i+1].score;
58         }
59     }
60     for(i=0;i<=n-1;i++){
61         
62         
63         if(s[i].score==temp){
64             
65             t[j++]=s[i];
66         }
67     }
68         
69     return j;    
70         
71         
72         
73         
74     
75     
76 }
 1 #include <stdio.h> 
 2 #include <string.h>
 3 const int N = 10;
 4 
 5 // 定義結構體型別struct student,並定義其別名為STU 
 6 typedef struct student {
 7     long int id;
 8     char name[20];
 9     float objective;    /*客觀題得分*/
10     float subjective;    /*操作題得分*/
11     float sum;
12     char level[10];    
13 }STU; 
14 
15 // 函式宣告
16 void input(STU s[], int n);
17 void output(STU s[], int n);
18 void process(STU s[], int n);
19 
20 int main() {
21     STU stu[N];
22     
23     printf("錄入%d個考生資訊: 准考證號,姓名,客觀題得分(<=40),操作題得分(<=60)\n", N); 
24     input(stu, N);
25     
26     printf("\n對考生資訊進行處理: 計算總分,確定等級\n");
27     process(stu, N);
28     
29     printf("\n列印考生完整資訊: 准考證號,姓名,客觀題得分,操作題得分,總分,等級\n");
30     output(stu, N); 
31     
32     return 0;
33 } 
34 
35 // 錄入考生資訊:准考證號,姓名,客觀題得分,操作題得分
36 void input(STU s[], int n) {
37     // 補足程式碼
38     int i; 
39     for(i=0;i<n;i++)
40         scanf("%ld %s %f %f",&s[i].id,s[i].name,&s[i].objective,&s[i].subjective);
41         
42     
43 }
44 
45 //輸出考生完整資訊: 准考證號,姓名,客觀題得分,操作題得分,總分,等級
46 void output(STU s[], int n) {
47     // 補足程式碼
48     int i; 
49     float temp;
50     for(i=0;i<n;i++)
51         printf("                %ld %s %.2f %.2f %.2f %s\n",s[i].id,s[i].name,s[i].objective,s[i].subjective,s[i].sum,s[i].level);
52         
53 
54 }
55 
56 // 對考生資訊進行處理:計算總分,排序,確定等級
57 void process(STU s[], int n) {
58     // 補足程式碼
59    int i,j;
60    STU temp[N];
61    for(i=0;i<n;i++){
62        
63          s[i].sum=s[i].objective*0.4+s[i].subjective*0.6;
64          
65        
66        }
67        
68        for(i=0;i<n-1;i++){
69        
70            for(j=0;j<n-1-i;j++){ 
71            
72            if(s[j+1].sum>=s[j].sum){//陣列的氣泡排序 
73            
74                temp[0]=s[j];
75                s[j]=s[j+1];
76                s[j+1]=temp[0];
77            }
78         }
79        
80       }
81        
82        for(i=0;i<n;i++){
83            
84            if(i<=(0.1*n-1))
85               strcpy(s[i].level,"優秀");
86            else if(i>(0.1*n-1)&&i<=(0.5*n-1))
87               strcpy(s[i].level,"合格");
88            else
89               strcpy(s[i].level,"不及格");
90            
91            
92            
93        }
94        
95        
96        
97 }