按等級統計學生成績:輸入10個學生的學號、姓名和成績,輸出學生的成績等級和不及格人數。每個學生的記錄包括學號、姓名、成績和等級,要求定義和呼叫函式set_grade(),根據學生成績設定其等級。85-100為a,70-84為b,60-69為c,0-59為d。
#include
struct stu;
struct stu s[10];
int set_grade(struct stu s[10]);
void main()
printf("fail number is %d\n",len);
}int set_grade(struct stu s[10])
return len;
}新人,求讚求打賞。哪有問題可以提問。
c語言 按等級統計學生成績
本題要求實現乙個根據學生成績設定其等級,並統計不及格人數的簡單函式。函式介面定義 int set grade struct student p,int n 其中p是指向學生資訊的結構體陣列的指標,該結構體的定義為 struct student n是陣列元素個數。學號num 姓名name和成績scor...
按等級統計學生成績
本題要求實現乙個根據學生成績設定其等級,並統計不及格人數的簡單函式。int set grade struct student p,int n 其中p是指向學生資訊的結構體陣列的指標,該結構體的定義為 struct student n是陣列元素個數。學號num 姓名name和成績score均是已經儲存...
按等級統計學生成績
6 2 按等級統計學生成績 20分 本題要求實現乙個根據學生成績設定其等級,並統計不及格人數的簡單函式。函式介面定義 int set grade struct student p,int n 其中p是指向學生資訊的結構體陣列的指標,該結構體的定義為 struct student n是陣列元素個數。學...