47、已知在文件in.dat中存有若干个(个数<200)四位数字的正整数,函数readdat
()读取这若干个正整数并存入数组xx中。请编制函数calvalue(),其功能要求:1、求出
这文件中共有多少个正整数totnum;2、求出这些数中的各位数字之和是偶数的数的个数
totcnt,以及满足此条件的这些数的算术平均值totpjz,最后调用函数writedat()把所
求的结果输出到文件out.dat中。
部分源程序已给出。
请勿改动主函数main()、读数据函数readdat()和输出数据函数writedat()的内容。
#include<stdio.h>
#include<conio.h>
#define MAXNUM 200

int xx[MAXNUM];
int totnum=0;
int totcnt=0;
double totpjz=0.0;

int readdat(void);
void writedat(void);

void calvalue(void)
{

}

void main()
{
int i;
clrscr();
for(i=0;i<MAXNUM;i++) xx[i]=0;
if(readdat())
{printf("Can't open the data file in.dat!\007\n");
return;
}
calvalue();
printf("totnum=%d\n",totnum);
printf("totcnt=%d\n",totcnt);
printf("totpjz=%.2lf\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%.2lf\n",totnum,totcnt,totpjz);
fclose(fp);
}

/* 注:该题的关键在于会不会取出一个数的个、十、百、千位上的数。a[i]%10对10求
余结果为个位数,a[i]%100/10先对100求余得出后两位数然后再除10,由于为整数因此
得出上一个后两位数的第一位。依此类推。*/
void calvalue(void)
{
int i;
for(i=0;i<MAXNUM;i++)
{if(!xx[i]) break;
if(xx[i]>0) totnum++;
if((xx[i]/1000+xx[i]/100%10+xx[i]/10%10+xx[i]%10)/2==0)
{totcnt++;
totpjz+=xx[i];
}
}
totpjz/=totcnt;
}

返回南开百题目录

www.163164.cn 联系QQ:3149886