将文件"125.txt"中15名同学的姓名、成绩读入到结构体数组中,输出平均成绩和最高成绩的同学(要求保留2位小数)。要求定义如下结构体类型:
struct student
{
char name[20];
float mathScore;
};
数据文件:程序目录下
期待输出
平均分:67.03↵
最高分:luyu 80.66↵
实际输出
#include<stdio.h>
struct student
{
char name[20];
float mathScore;
}stu[15];
int main()
{FILE *p;float a[20]={0},s=0,max;int index=0,i;
p=fopen("125.txt","r");
fread(stu,sizeof(struct student),15,p);
fclose(p);
for(i=0;i<15;i++)
{if(i==0)max=stu[i].mathScore;
s+=stu[i].mathScore;
if(stu[i].mathScore>max) max=stu[i].mathScore,index=i;}
printf("平均分:%.2f\n最高分:%s %.2f\n",s/15,stu[index].name,stu[index].mathScore);
return 0;}
请问这个是fread使用错误吗?正确应该如何使用fread