一道C语言的题目
}#include <stdio.h>
void main()
{
struct student
{
char name[10];
float score;
};
struct student stu[5]={"Mary",76.1,"John",87.3,"Tom",81,"susa",87.8,"wilu",79};
int i=0,k=0;
/**/ /**/ ;
for(i=0;i<5;i++)
if(stu[i].score>max)
{ max=/**/ /**/ ;
/**/ /**/;
}
printf("\nname:%s,score:%.2f", stu[k].name,stu[k].score );
getch();