實驗6 C語言結構體、列舉應用程式設計

青栀%發表於2024-06-10
task1.c
  1 // P286例8.17
  2 // 對教材上的程式作了微調整,把輸出學生資訊單獨編寫成一個函式模組
  3 // 列印不及格學生資訊和所有學生資訊程分別呼叫 
  4  
  5 #include <stdio.h>
  6 #include <string.h> 
  7 #define N 3        // 執行程式輸入測試時,可以把這個陣列改小一些輸入測試 
  8 
  9 typedef struct student {
 10     int id;             // 學號 
 11     char name[20];         // 姓名 
 12     char subject[20];     // 考試科目
 13     double perf;         // 平時成績 
 14     double mid;         // 期中成績 
 15     double final;         // 期末成績
 16     double total;         // 總評成績 
 17     char level[10];     // 成績等級
 18 } STU;
 19 
 20 void input(STU [], int);            // 錄入學生資訊
 21 void output(STU [], int);            // 輸出學生資訊
 22 void calc(STU [], int);                // 計算總評和等級 
 23 int fail(STU [], STU [], int);        // 統計不及格學生資訊
 24 void sort(STU [], int);                // 排序 
 25 
 26 int main() {
 27     STU st[N], fst[N];   // 陣列st記錄學生資訊,fst記錄不及格學生資訊 
 28     int k;  // 用於記錄不及格學生個數 
 29     
 30     printf("錄入學生成績資訊:\n");
 31     input(st, N);
 32     
 33     printf("\n成績處理...\n");
 34     calc(st, N);
 35     
 36     k = fail(st, fst, N);
 37     sort(st, N);
 38     printf("\n學生成績排名情況:\n");
 39     output(st, N);
 40     
 41     printf("\n不及格學生資訊:\n");
 42     output(fst, k);
 43     
 44     return 0;
 45 } 
 46 
 47 void input(STU s[], int n) {
 48     int i;
 49     
 50     for(i = 0; i < n; i++)
 51         scanf("%d %s %s %lf %lf %lf", &s[i].id, s[i].name, s[i].subject,
 52                                       &s[i].perf, &s[i].mid, &s[i].final);
 53 }
 54 
 55 void output(STU s[], int n) {
 56        int i;
 57    
 58       printf("-----------------\n");
 59       printf("學號   姓名     科目   平時   期中   期末   總評   等級\n");
 60        for(i = 0; i<n; i++)
 61           printf("%d   %-6s   %-4s   %-4.0f   %-4.0f   %-4.0f   %-4.1f   %s\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);
 62 }
 63 
 64 
 65 void calc(STU s[],int n) {
 66     int i;
 67 
 68     for(i = 0; i < n; i++) {    
 69         s[i].total = s[i].perf * 0.2 + 
 70                      s[i].mid * 0.2 +
 71                      s[i].final * 0.6;
 72         
 73         if(s[i].total >= 90)
 74           strcpy(s[i].level, "");
 75         else if(s[i].total >= 80)
 76           strcpy(s[i].level, "");
 77         else if(s[i].total >= 70)
 78           strcpy(s[i].level, ""); 
 79         else if(s[i].total >= 60)
 80           strcpy(s[i].level, "及格");
 81         else
 82           strcpy(s[i].level, "不及格");         
 83     }
 84 }
 85 
 86 int fail(STU s[], STU t[], int n) {
 87       int i, cnt = 0;
 88       
 89       for(i = 0; i < n; i++)
 90           if(s[i].total < 60)
 91             t[cnt++] = s[i];
 92             
 93     return cnt;
 94 }
 95 
 96 void sort(STU s[], int n) {
 97     int i, j;
 98     STU t;
 99     
100     for(i = 0; i < n-1; i++)
101       for(j = 0; j < n-1-i; j++)
102         if(s[j].total < s[j+1].total) {
103             t = s[j];
104             s[j] = s[j+1];
105             s[j+1] = t;
106         }
107 }

task2.c

 1 #include <stdio.h>
 2 #include <string.h>
 3 #define N 10
 4 #define M 80
 5 
 6 typedef struct {
 7     char name[M];       // 書名
 8     char author[M];     // 作者
 9 } Book;
10 
11 int main() {
12     Book x[N] = { {"《一九八四》", "喬治.奧威爾"},
13                   {"《美麗新世界》", "赫胥黎"},
14                   {"《昨日的世界》", "斯蒂芬.茨威格"}, 
15                   {"《萬曆十五年》", "黃仁宇"},
16                   {"《一隻特立獨行的豬》", "王小波"},
17                   {"《百年孤獨》", "馬爾克斯"},
18                   {"《查令十字街84號》", "海蓮.漢芙"},
19                   {"《只是孩子》", "帕蒂.史密斯"}, 
20                   {"《刀鋒》", "毛姆"},
21                   {"《沉默的大多數》", "王小波"} };
22     Book *ptr;
23     int i;
24     char author[M];
25 
26     // 使用指標遍歷結構體陣列
27     printf("所有圖書資訊: \n");
28     for(ptr = x; ptr < x + N; ++ptr)
29         printf("%-30s%-30s\n", ptr->name, ptr->author);
30 
31     // 查詢指定作者的圖書
32     printf("\n輸入作者名: ");
33     gets(author);
34     for(ptr = x; ptr < x + N; ++ptr)
35         if(strcmp(ptr->author, author) == 0) {
36             printf("%-30s%-30s\n", ptr->name, ptr->author);
37         }
38 
39     return 0;
40 }

task3.1c

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #define N 80
 4 
 5 typedef struct FilmInfo {
 6     char name[N];
 7     char director[N];
 8     char region[N];
 9     int year;
10     struct FilmInfo *next;
11 } Film;
12 
13 
14 void output(Film *head);   // 遍歷輸出連結串列資訊
15 Film *insert(Film *head, int n);   // 向連結串列中插入n個結點,返回頭指標
16 
17 
18 int main() {
19     int n;          // 結點數
20     Film *head;     // 頭指標變數,存放連結串列中第一個節點的地址
21 
22     head = NULL;
23     printf("輸入影片數目: ");
24     scanf("%d", &n);
25 
26     // 向連結串列中插入n部影片資訊
27     head = insert(head, n);
28 
29     // 遍歷輸出連結串列中所有影片資訊
30     printf("\n所有影片資訊如下: \n");
31     output(head);
32 
33     return 0;
34 }
35 
36 // 向連結串列中插入n個結點,從表頭插入,返回頭指標變數
37 Film *insert(Film *head, int n) {
38     int i;
39     Film *p;
40 
41     for(i = 1; i <= n; ++i) {
42         p = (Film *)malloc(sizeof(Film));
43         printf("請輸入第%d部影片資訊: ", i);
44         scanf("%s %s %s %d", p->name, p->director, p->region, &p->year);
45         
46         // 把結點從表頭插入到連結串列中
47         p->next = head;
48         head = p;   // 更新頭指標變數
49     }
50 
51     return head;
52 }
53 
54 // 遍歷輸出連結串列資訊
55 void output(Film *head) {
56     Film *p;
57 
58     p = head;
59     while(p != NULL) {
60         printf("%-20s %-20s %-20s %d\n", p->name, p->director, p->region, p->year);
61         p = p -> next;
62     }
63 }

task2.c

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #define N 80
 4 
 5 typedef struct FilmInfo {
 6     char name[N];
 7     char director[N];
 8     char region[N];
 9     int year;
10     struct FilmInfo *next;
11 } Film;
12 
13 
14 void output(Film *head);   // 遍歷輸出連結串列資訊
15 Film *insert(Film *head, int n);   // 向連結串列中插入n個結點,返回頭指標
16 
17 
18 int main() {
19     int n;          // 結點數
20     Film *head;     // 頭指標變數,存放連結串列中第一個節點的地址
21     Film *p;        // 存放新申請的Film節點記憶體空間地址
22 
23     // 建立頭結點
24     p = (Film *)malloc(sizeof(Film));
25     p->next = NULL;
26     head = p;       // 頭指標變數存放頭節點的地址
27 
28     printf("輸入影片數目: ");
29     scanf("%d", &n);
30 
31     // 向連結串列中插入n部影片資訊
32     head = insert(head, n);
33 
34     // 遍歷輸出連結串列中所有影片資訊
35     printf("\n所有影片資訊如下: \n");
36     output(head);
37 
38     return 0;
39 }
40 
41 // 向連結串列中插入n個結點,從表頭插入,返回頭指標變數
42 Film *insert(Film *head, int n) {
43     int i;
44     Film *p;
45 
46     for(i = 1; i <= n; ++i) {
47         p = (Film *)malloc(sizeof(Film));
48         printf("請輸入第%d部影片資訊: ", i);
49         scanf("%s %s %s %d", p->name, p->director, p->region, &p->year);
50         
51         // 把結點從表頭插入到連結串列中
52         p->next = head->next;
53         head->next = p;
54     }
55 
56     return head;
57 }
58 
59 // 遍歷輸出連結串列資訊
60 void output(Film *head) {
61     Film *p;
62 
63     p = head->next;
64     while(p != NULL) {
65         printf("%-20s %-20s %-20s %d\n", p->name, p->director, p->region, p->year);
66         p = p -> next;
67     }
68 }

task4.c

 1 #include <stdio.h>
 2 #define N 10
 3 
 4 typedef struct {
 5     char isbn[20];          // isbn號
 6     char name[80];          // 書名
 7     char author[80];        // 作者
 8     double sales_price;     // 售價
 9     int  sales_count;       // 銷售冊數
10 } Book;
11 
12 void output(Book x[], int n);
13 void sort(Book x[], int n);
14 double sales_amount(Book x[], int n);
15 
16 int main() {
17     Book x[N] = {{"978-7-229-14156-1", "源泉", "安.蘭德", 84, 59},
18                  {"978-7-5133-5261-1", "李白來到舊金山", "譚夏陽", 48, 16},
19                  {"978-7-5617-4347-8", "陌生人日記", "周怡芳", 72.6, 27},
20                  {"978-7-5722-5475-8", "晶片簡史", "汪波", 74.9, 49},
21                  {"978-7-5046-9568-0", "資料化決策", "道格拉斯·W·哈伯德", 49, 42},
22                  {"978-7-5133-4388-6", "美好時代的背後", "凱瑟琳.布", 34.5, 39},
23                  {"978-7-1155-0509-5", "無窮的開始:世界進步的本源", "戴維·多伊奇", 37.5, 55},
24                  {"978-7-5321-5691-7", "何為良好生活", "陳嘉映", 29.5 , 31},
25                  {"978-7-5133-5109-6", "你好外星人", "英國未來出版集團", 118, 42},
26                  {"978-7-2011-4617-1", "世界盡頭的咖啡館", "約翰·史崔勒基", 22.5, 44}};
27     
28     printf("圖書銷量排名: \n");
29     sort(x, N);
30     output(x, N);
31 
32     printf("\n圖書銷售總額: %.2f\n", sales_amount(x, N));
33     
34     return 0;
35 }
36 
37 // 待補足:函式output()實現
38 void output(Book x[], int n){
39     int i;
40     printf("ISBN號            書名                作者          售價    銷售冊數\n");
41     for(i=0;i<n;i++)
42     printf("%-20s%-26s%-20s%.1f\t%d\n",x[i].isbn,x[i].name,x[i].author,x[i].sales_price,x[i].sales_count);
43 } 
44 
45 
46 // 待補足:函式sort()實現
47 void sort(Book x[], int n){
48     int i,j;
49     Book temp;
50     for(i=0;i<n-1;++i)
51         for(j=0;j<n-i-1;++j){
52             if(x[j].sales_count<x[j+1].sales_count){
53                 temp=x[j];
54                 x[j]=x[j+1];
55                 x[j+1]=temp;
56             }
57         }
58 }
59 
60 
61 // 待補足:函式sales_count()實現
62 double sales_amount(Book x[], int n){
63     int i;
64     double s=0;
65     for(i=0;i<n;i++){
66         s+=x[i].sales_count*x[i].sales_price;
67     }
68     return s;
69 }

task5.c

 1 #include <stdio.h>
 2 
 3 typedef struct {
 4     int year;
 5     int month;
 6     int day;
 7 } Date;
 8 
 9 // 函式宣告
10 void input(Date *pd);                   // 輸入日期給pd指向的Date變數
11 int day_of_year(Date d);                // 返回日期d是這一年的第多少天
12 int compare_dates(Date d1, Date d2);    // 比較兩個日期: 
13                                         // 如果d1在d2之前,返回-1;
14                                         // 如果d1在d2之後,返回1
15                                         // 如果d1和d2相同,返回0
16 
17 void test1();   // 測試函式1: 測試某個日期時這一年第多少天                   
18 void test2();   // 測試函式2: 測試兩個日期先後順序
19 
20 
21 int main() {
22     printf("測試1: 輸入日期, 列印輸出這是一年中第多少天\n");
23     test1();
24 
25     printf("\n測試2: 兩個人年齡大小關係\n");
26     test2();
27 }
28 
29 // 測試函式實現
30 void test1() {
31     Date d;
32     int i;
33 
34     printf("輸入日期:(以形如2024-06-01這樣的形式輸入)\n");
35     for(i = 0; i < 3; ++i) {
36         input(&d);
37         printf("%04d-%02d-%02d是這一年中第%d天\n\n", d.year, d.month, d.day, day_of_year(d));
38     }
39 }
40 
41 void test2() {
42     Date Alice_birth, Bob_birth;
43     int i;
44     int ans;
45 
46     printf("輸入Alice和Bob出生日期:(以形如2005-08-11這樣的形式輸入)\n");
47     for(i = 0; i < 3; ++i) {
48         input(&Alice_birth);
49         input(&Bob_birth);
50         ans = compare_dates(Alice_birth, Bob_birth);
51         
52         if(ans == 0)
53             printf("Alice和Bob一樣大\n\n");
54         else if(ans == -1)
55             printf("Alice比Bob大\n\n");
56         else
57             printf("Alice比Bob小\n\n");
58     }
59 }
60 
61 // 補足函式input實現
62 // 功能: 輸入日期給pd指向的Date變數
63 void input(Date *pd) {
64     // 待補足
65     scanf("%d-%d-%d",&pd->year,&pd->month,&pd->day);
66 }
67 
68 // 補足函式day_of_year實現
69 // 功能:返回日期d是這一年的第多少天
70 int day_of_year(Date d) {
71     int s=0;
72     int i;
73     int is_leap_year=(d.year%400==0||(d.year%4==0 && d.year%100!=0));
74         for(i=1;i<d.month;i++){
75             if(i==1||i==3||i==5||i==7||i==8||i==10)
76             s+=31;
77             else if(i==2)
78             s+=28+is_leap_year;
79             else
80             s+=30;}
81     s+=d.day;
82     return s;
83 }
84 
85 // 補足函式compare_dates實現
86 // 功能:比較兩個日期: 
87 // 如果d1在d2之前,返回-1;
88 // 如果d1在d2之後,返回1
89 // 如果d1和d2相同,返回0
90 int compare_dates(Date d1, Date d2) {
91     // 待補足
92     if(day_of_year(d1)<day_of_year(d2))
93     return -1;
94     else if(day_of_year(d1)>day_of_year(d2))
95     return 1;
96     else
97     return 0;
98 }

task6.c

 1 #include <stdio.h>
 2 #include <string.h>
 3 #define N 20
 4 
 5 enum Role {admin, student, teacher};
 6 
 7 typedef struct {
 8     char username[20];  // 使用者名稱
 9     char password[20];  // 密碼
10     enum Role type;     // 賬戶型別
11 } Account;
12 
13 
14 // 函式宣告
15 void output(Account x[], int n);    // 輸出賬戶陣列x中n個賬戶資訊,其中,密碼用*替代顯示
16 
17 int main() {
18     Account x[] = {{"A1001", "123456", student},
19                     {"A1002", "123abcdef", student},
20                     {"A1009", "xyz12121", student}, 
21                     {"X1009", "9213071x", admin},
22                     {"C11553", "129dfg32k", teacher},
23                     {"X3005", "921kfmg917", student}};
24     int n;
25     n = sizeof(x)/sizeof(Account);
26     output(x, n);
27 
28     return 0;
29 }
30 
31 // 待補足的函式output()實現
32 // 功能:遍歷輸出賬戶陣列x中n個賬戶資訊
33 //      顯示時,密碼欄位以與原密碼相同欄位長度的*替代顯示
34 void output(Account x[], int n) {
35     int i,j;
36     char a[n][N];
37     for(i=0;i<n;i++){
38         strcpy(a[i],x[i].password);
39         for(j=0;a[i][j];j++)
40             a[i][j]='*';}
41     for(i=0;i<n;i++){
42         printf("%-10s%-15s",x[i].username,a[i]);
43         switch(x[i].type){
44             case 0:printf("admin");break;
45             case 1:printf("student");break;
46             case 2:printf("teacher");break;
47         }
48         printf("\n");
49     }
50 
51 
52 }

實驗總結

1.利用邏輯運算進行閏年二月的加1運算

2.strcpy是陣列的替換,不適用於字元

相關文章