随机改写某学生的分数.
#include <stdio.h>main()
{
int num,x;
long i;
float score;
FILE *fp;
if(!(fp=open("w812.dat","rb+")))
{
printf("cannot open file\n");
exit(1);
}
printf("请输入序号:");
scanf("%d",&x);
i=16*(x-1)+12;
printf("请输入新的分数:");
scanf("%f",&score);
fseek(fp,i,0);
fweite(&score,4,1,fp);
fclose(fp);
}
已知w812.dat文件中存有20个学生的数据,根据序号随机改写某学生的分数.
这个程序中红色部分是什么意思呢?
i=16*(x-1)+12