C文件问题!!!
#include "stdio.h"output()
{
FILE *fp; int x,y,z; int num=0;
clrscr();
if((fp=fopen("g:\\cj.dat","r"))==NULL)
{ printf("打开文件失败,按任意键退出"); getch(); exit(0); }
fscanf(fp,"%d,%d,%d,",&x,&y,&z);
if((x+y+z)/3>=80.0) num=num+1;
printf("%d %d %d",x,y,z);
printf("\n平均分数高于80的人数为: %d",num);
getch();
}
main()
{
FILE *fp; char ch='a'; clrscr();
fp=fopen("g:\\cj.dat","w+");
if(fp==NULL) { printf("创建文件失败,按任意键继续。"); getch(); exit(0); }
while(ch!='Q')
{
ch=getchar();
fputc(ch,fp);
}
fclose(fp);
output();
getch();
}
这个程序有什么问题,为什么只能读三个数字???