利用C语言建立一个有三个学生的学生成绩表,信息有学号,姓名,英语,语文,数学。并输入三个学生的信息。


#include<stdio.h>

#define N 3

struct students

{

int number;

char name[20];

int score[3];

}stu[N];

int main()

{

int i,j;

printf("Please input the information......\n");

printf("NO. \tName \tMaths \tChinese 斗衫前   English\n");

for(i = 0; i < N; 塌告i++)

{

scanf("%d %s",&stu[i].number,stu[i].name);

for(j = 0; j < 3; j++)

scanf("%d",&stu[i].score[j]);

}

return 0;

}

如有空清什么问题,欢迎一起探讨。