第17周 專案6 學生成績統計(3)

2021-06-27 19:21:56 字數 885 閱讀 4982

/* 

* 檔名稱:test.cpp

* 作 者:呼亞萍

* 完成日期:2023年 12 月 23日

* 版 本 號:v1.0

* * 問題描述:score.txt中是一些同學的學號、姓名、c++、高數、英語成績,利用前面定義的結構體陣列,讀取檔案score.txt中的資料,完成應用.

* 程式輸入:相應的程式

* 程式輸出:得分情況

*/ #include #include #include using namespace std;

struct student

;const int n=200;

int main()

infile.close();

cout<

//按總分排序(降序),用了選擇排序

for(i=0; istu[k].grade) k=j;

t_stu=stu[k]; //交換結構體陣列元素

stu[k]=stu[i];

stu[i]=t_stu;

}//輸出排序後的成績單;

for(i=0; i=60&&stu[i].math>=60&&stu[i].english>=60)

{cout<=60&&stu[i].math>=60&&stu[i].english>=60) //取達到總分要求的值

{cout<

運算結果:

知識點總結:

多檔案組合,結構體的應用

學習心得:

檔名要和程式中的檔名相同,才能引用。

17周專案6 學生成績統計

問題及 檔名稱 test.cpp 作 者 尚 月 完成日期 2014年 12 月 24 日 版本號 v1.0 問題描述 從鍵盤輸入n名學生資訊,求出每名同學的總分和均分,並儲存在結構體陣列中,輸出每位學生的資訊學號 姓名 總分和均分。輸入描述 n名學生資訊 程式輸出 每位學生的資訊學號 姓名 總分和...

第17周 專案6 學生成績統計(2)

檔名稱 test.cpp 作 者 呼亞萍 完成日期 2014年 12 月 23日 版 本 號 v1.0 程式輸入 相應的程式 程式輸出 得分情況 include include using namespace std struct student void calculate student s,i...

第17周專案6 學生成績統計(2)

問題及 檔名稱 made87.cpp 作 者 孫化龍 完成日期 2014年12月23日 版 本 號 v1.0 問題描述 完成相關函式的定義,實現main函式中要求的功能。include include using namespace std struct student void calculate...