1. 程式人生 > 實用技巧 >實驗六:大雜燴

實驗六:大雜燴

實驗六

1.實驗任務1

#include<stdio.h>
#include<stdlib.h>
#include<string.h> 
#define N 10        // 執行程式輸入測試時,可以把N改小一些輸入測試 

typedef struct student {
    int id;             /*學生學號 */ 
    char name[20];         /*學生姓名 */ 
    char subject[20];     /*考試科目 */ 
    float perf;         /*平時成績 */ 
    float
mid; /* 期中成績 */ float final; /* 期末成績 */ float total; /* 總評成績 */ char level[10]; /* 成績等級 */ } STU; void input(STU[],int ); /*輸入學生資訊 */ void calc(STU[],int); /*計算總評和等級 */ int fail(STU[],STU [],int); /*不及格學生統計 */ void sort(STU[],int); /*
排序 */ void print(STU[], int); /*輸出學生資訊*/ int main() { STU st[N],fst[N]; // 陣列st記錄學生資訊,fst記錄不及格學生資訊 int k; // 用於記錄不及格學生個數 printf("錄入學生成績資訊:\n"); input(st,N); printf("\n成績處理...\n"); calc(st,N); k = fail(st,fst,N); sort(st, N); printf("\n學生成績排名情況:\n
"); print(st, N); printf("\n不及格學生資訊:\n"); print(fst, k); return 0; } // 輸入學生資訊 void input(STU s[],int n) { int i; for(i=0;i<n;i++) 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); } // 計算總評和等級 void calc(STU s[],int n) { int i; for(i=0;i<n;i++) { s[i].total=s[i].perf*0.2+s[i].mid*0.2+s[i].final*0.6; if(s[i].total>=90) strcpy(s[i].level,""); // 注意:等級是字元型陣列,要使用strcpy完成賦值 else if(s[i].total>=80 && s[i].total<90) strcpy(s[i].level,""); else if(s[i].total>=70 && s[i].total<80) strcpy(s[i].level,""); else if(s[i].total>=60 && s[i].total<70) strcpy(s[i].level,"及格"); else strcpy(s[i].level,"不及格"); } } // 不及格學生統計 // 陣列s存放的是所有學生資訊,陣列t存放不及格學生資訊,n是陣列s中元素個數 // 函式返回值:返回的是不及格人數 int fail(STU s[],STU t[],int n) { int i,k=0; for(i=0;i<n;i++) if(s[i].total<60) t[k++]=s[i]; return k; } // 根據總評成績對學生記錄資訊排序 // 使用的是氣泡排序演算法 void sort(STU s[],int n) { int i,j; STU temp; for(i=0;i<n-1;i++) for(j=0;j<n-1-i;j++) if(s[j].total<s[j+1].total) { temp = s[j]; s[j] = s[j+1]; s[j+1] = temp; } } // 輸出學生資訊 void print(STU s[], int n) { int i; printf("-----------------\n"); printf("學號 姓名 考試科目 平時成績 期中成績 期末成績 總評成績 成績等級\n"); for(i=0;i<n;i++) 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); }

執行結果

執行時發現不能正常輸入中文,上搜狗後瞭解到這能是因為我用的命令提示符版本不能輸入中文。

辦法是先在記事本上覆制好,然後點命令提示符的標題欄右鍵,選擇編輯--貼上。

結果因為空格沒數對......

然後又搞了好長時間

emmmmmm

終於

其中分享一下輸入方式

1001   甜茶     高數 88 85 90
1002   黴黴     高數 99 87 96
1003   幸運兒   高數 50 32 35
1004   小米     高數 0 1 2
1005   小賤     高數 0 1 2
1006   鹹魚     高數 60 80 100
1007   糰子     高數 80 85 90
1008   李華     高數 100 100 100
1009   天啟     高數 66 86 96
1010   王者     高數 0 0 100

其中我覺的以下幾點一定要注意:

1.輸入空格時不能光憑感覺,而要先去看下程式碼用來輸入的那行“”裡的內容,不然會像我一樣浪費很長時間;

2.這個程式碼是之前我們所學的函式定義、呼叫,迴圈語句,條件語句、陣列,巨集,結構體等的標準大雜燴,如果前面的基礎不穩這邊會有點費解;

3.這邊的氣泡排序法是老生常談的問題也是重點(特別注意中間變數和要交換的變數要是相同型別的變數不然會出bug);

4.這邊的等級是字元型陣列,不能直接用=賦值而要用strcpy函式(但是字元可以直接用=等關係運算符)

2.實驗任務2

原始碼

#include <stdio.h>

const int N=5;

// 定義結構體型別struct student,並定義STU為其別名 
typedef struct student {
    long no;
    char name[20];
    int score;     
}STU;

// 函式宣告 
void input(STU s[], int n);
int findMinlist(STU s[], STU t[], int n);
void output(STU s[], int n);

int main() {
    STU stu[N], minlist[N];
    int count;
    
    printf("錄入%d個學生資訊\n", N);
    input(stu, N);
    
    printf("\n統計最低分人數和學生資訊...\n");
    count = findMinlist(stu, minlist, N);
    
    printf("\n一共有%d個最低分,資訊如下:\n", count);
    output(minlist, count);
     
    return 0;
} 

// 輸入n個學生資訊,存放在結構體陣列s中 
void input(STU s[], int n) {
    int i;
    for(i=0; i<n; i++) 
        scanf("%ld %s %d", &s[i].no, s[i].name, &s[i].score);
} 

// 輸出結構體s中n個元素資訊
void output(STU s[], int n) {
    int i;
    for(i=0; i<n; i++)
        printf("%ld %s %d\n", s[i].no, s[i].name, s[i].score); 
} 

// 在結構體陣列s中,查詢最低分學生的記錄,將其存入結構體陣列t中
// 形參n是結構體陣列s中元素個數
// 函式返回最低分的學生人數 
int findMinlist(STU s[], STU t[], int n) {
    // 補足函式實現
    int i,j,k=0;
    STU temp;
    temp=s[0];
    for(i=0;i<n-1;i++)
    {
        if(s[i].score<=s[i+1].score)
        {temp=s[i];
        }
        } 
        
    for(j=0;j<n;j++)
    {if(temp.score==s[j].score)
    {t[k]=s[j];
    k++;
    
    }
    }return k;}
    

執行結果

3.實驗任務3

原始碼

#include <stdio.h> 
#include <string.h>
#include <stdlib.h>
const int N = 10;
#define _NO_SECURE_WARNINGS
// 定義結構體型別struct student,並定義其別名為STU 
typedef struct student {
    long int id;
    char name[20];
    float objective;    /*客觀題得分*/
    float subjective;    /*操作題得分*/
    float sum;
    char level[10];    
}STU; 
     

// 函式宣告
void input(STU s[], int n);
void output(STU s[], int n);
void process(STU s[], int n);

int main() {
    STU stu[N];
    
    printf("錄入%d個考生資訊: 准考證號,姓名,客觀題得分(<=40),操作題得分(<=60)\n", N); 
    input(stu, N);
    
    printf("\n對考生資訊進行處理: 計算總分,確定等級\n");
    process(stu, N);
    
    printf("\n列印考生完整資訊: 准考證號,姓名,客觀題得分,操作題得分,總分,等級\n");
    output(stu, N);
    system("pause");
    
    return 0;
} 

// 錄入考生資訊:准考證號,姓名,客觀題得分,操作題得分
void input(STU s[], int n) {
    int i;

    
    for(i=0;i<n;i++){
    scanf("%ld %s %f %f",&s[i].id,s[i].name,&s[i].objective,&s[i].subjective);
    
    
    }
    
}

//輸出考生完整資訊: 准考證號,姓名,客觀題得分,操作題得分,總分,等級
void output(STU s[], int n) {
    int i;
    printf("\n");
     printf ("准考證號   姓名   客觀題得分  操作題得分   總分    等級\n"); 
    for(i=0;i<n;i++)
    {  
        printf("%ld %10s %10.2f %9.2f %10.2f %7s\n",s[i].id,s[i].name,s[i].objective,s[i].subjective,s[i].sum,s[i].level);
     } 
}

// 對考生資訊進行處理:計算總分,排序,確定等級
void process(STU s[], int n) {
    int i,j;
        
    STU temp;
    for(i=0;i<=n;i++)
    {s[i].sum=(s[i].objective+s[i].subjective);}
    for(i=0;i<n;i++){
    
    for(i=0;i<=n;i++)
       for(j=0;j<n-i-1;j++)
       {if (s[j].sum<s[j+1].sum)
       {temp=s[j];
       s[j]=s[j+1];
       s[j+1]=temp;}} }
       
    for(i=0;i<=n;i++){
       
        if(i<1)
          strcpy(s[i].level,"");    // 注意:等級是字元型陣列,要使用strcpy完成賦值 
        else if(i>=1&&i<=4)
          strcpy(s[i].level,"合格");
        else
          strcpy(s[i].level,"不合格");    }    
        
       
    
}

執行結果

實驗總結

1.各種bug詳見上文

2.結構體的各種操作

特別注意可遷移氣泡排序法

3.特殊的輸入方式

記事本新技能get

4.格式要注意空格

5.審題要仔細,不然會在那一臉懵逼搞半天

僅僅就因為一個詞甚至一個字

6.這次實驗我明顯感受到了我上機能力(操作能力)的提升

不過還要繼續打怪升級呀!

7.special!大雜燴!前面知識高能預警!

最後

再次感謝所有讀到最後的人!!!

希望多提些建設性意見啊!

麼麼噠!