赞赞麋 发表于 2020-7-6 10:09:10

为什么要用for循环呢

本帖最后由 赞赞麋 于 2020-7-6 13:05 编辑

逻辑关系不是很懂
void save()                  /* 成绩保存 */
{
FILE *fp;
int i,j;
if((fp=fopen("data.txt","w"))==NULL)    /* 文件打开 */
{
   printf("File open error!\n");
   return;                                                                     //为什么要用return呢?而不是exit(0)
}
for(i=0;i<M;i++)            /* 写入各科目名称 */
   fprintf(fp," %s ",subject_name);
fprintf(fp,"\n");
for(i=0;i<N;i++)            /* 写入学生数据、成绩信息 */
{
   fprintf(fp,"%5s%5d ",stud.name,stud.num);
   for(j=0;j<M;j++)
   {
   fprintf(fp,"% 6.1f ",stud.score);
   }
   fprintf(fp,"\n");
}
if(fclose(fp))                /* 文件关闭 */
{
   printf("Can not close the file!\n");      //为什么关闭文件后需要输出 Can not close the file!
   return;
}
printf("File save succeed!\n");
getchar();
return;
}
页: [1]
查看完整版本: 为什么要用for循环呢