#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;
}
如有空清什么问题,欢迎一起探讨。