c文件的目录里有in.dat文件,可怎么老是说没有啊!?!?帮忙解答一下。in.dat传上了
#include <stdio.h>
#include <conio.h>
#define MAXNUM 200
int xx[MAXNUM];
int totNum=0; /*文件IN.DAT中共有多少个正整数*/
int totCnt=0; /*符合条件的正整数的个数*/
double totPjz=0.0; /*平均值*/
int ReadDat(void);
void writeDat(void);
void CalValue(void)
{int i;
for(i=0;i<MAXNUM;i++)
if(xx[i]>0)
{totNum++;
if((xx[i]>>1)%2==0)
{totCnt++;totNum+=xx[i];
}
}
totNum/=totCnt;
}
void main()
{
int i;
clrscr();
for(i=0;i<MAXNUM;i++)xx[i]=0;
if(ReadDat()){
printf("数据文件IN.DAT不能打开!\007\n");
return;
}
CalValue();
printf("文件IN.DAT中共有正整数=%d个\n",totNum);
printf("符合条件的正整数的个数=%d个\n",totCnt);
printf("平均值=%.2f\n",totPjz);
writeDat();
}
int ReadDat(void) /*主要看看这个函数有什么毛病!!!!!谢谢啦!!!*/
{
FILE *fp;
int i=0;
if((fp=fopen("IN.DAT","r"))==NULL) return 1;
while(!feof(fp)){
fscanf(fp,"%d,",&xx[i++]);
}
fclose(fp);
return 0;
}
void writeDat(void)
{
FILE *fp;
fp=fopen("OUT.DAT","w");
fprintf(fp,"%d\n%d\n%6.2f\n",totNum,totCnt,totPjz);
fclose(fp);
}
[此贴子已经被作者于2007-9-21 21:59:16编辑过]