问问有关结构体的题
题目如图
然后这是我的代码
#include <stdio.h>
struct student
{
int id[2];
char name[2];
int score[2];
};
int main()
{
int i;
struct student stu[2];
for(i=0;i<2;i++)
{
scanf("%d%s%d",&stu[i].id,stu[i].name,&stu[i].score);
}
if(stu[0].score<stu[1].score)
{
printf("%d %s %d",stu[1].id,stu[1].name,stu[1].score);
}
else
printf("%d %s %d",stu[0].id,stu[0].name,stu[0].score);
return 0;
}
然后结果就是这样QVQ 求助