1、三级数据库技术机试-317 及答案解析(总分:100.00,做题时间:90 分钟)一、上机题(总题数:1,分数:100.00)1.已知在文件 IN20.DAT中存有若干个(个数200)4 位数字的正整数,函数 ReadDat()的功能是读取这若干个正整数并存入数组 xx中。请编制函数 CalValue(),其功能要求:(1)求出这文件中共有多少个正整数 totNum;(2)求出这些数中的各位数字之和是偶数的数的个数 totCnt,以及满足此条件的这些数的算术平均值 totPjz,最后调用函数 WriteDat()把所求的结果输出到文件 OUT20.DAT中。注意:部分源程序已给出。请勿改动主函
2、数 main()、读函数 ReadDat()和写函数 WriteDat()的内容。试题程序:#include s t dio. h#includeconio.h#define MAXNUM 200int xx MAXNUM;int totNum = 0; /* 文件 IN20.DAT 中共有多少个正整数 */int totCnt = 0; /* 符合条件的正整数的个数 */double totPjz = 0.0; /* 平均值 */int ReadDat (void);void Writedat(void);void CalValue()main ( )int i;clrscr ( );for
3、(i = 0; i MAXNUM; i+)xxi = 0;if (Readdat ()printf(“数据文件 IN20.DAT 不能打开!/007/n“);return;CalValue ( );printf(“文件 IN20.DAT 中共有正整数=%d 个/n“, totNum);printf(“符合条件的正整数的个数=%d 个/n“, totCnt);printf(“平均值=%.21f/n“, totPjz);Writedat ( );int Readdat (void)FILE *fp;int i = 0;if(fp = fopen (“IN20.DAT“, “r“) = NULL)r
4、eturn 1;while(! feof (fp)fscanf(fp, “%d,“, fclose (fp);return 0;void Writedat(void)FILE *fp;fp = fopen(“OUT20.DAT“, “w“);fprintf(fp, “%d/n%d/n%.21f/n“, totNum, totCnt, totPjz);fclose (fp);(分数:100.00)_三级数据库技术机试-317 答案解析(总分:100.00,做题时间:90 分钟)一、上机题(总题数:1,分数:100.00)1.已知在文件 IN20.DAT中存有若干个(个数200)4 位数字的正整数
5、,函数 ReadDat()的功能是读取这若干个正整数并存入数组 xx中。请编制函数 CalValue(),其功能要求:(1)求出这文件中共有多少个正整数 totNum;(2)求出这些数中的各位数字之和是偶数的数的个数 totCnt,以及满足此条件的这些数的算术平均值 totPjz,最后调用函数 WriteDat()把所求的结果输出到文件 OUT20.DAT中。注意:部分源程序已给出。请勿改动主函数 main()、读函数 ReadDat()和写函数 WriteDat()的内容。试题程序:#include s t dio. h#includeconio.h#define MAXNUM 200int
6、 xx MAXNUM;int totNum = 0; /* 文件 IN20.DAT 中共有多少个正整数 */int totCnt = 0; /* 符合条件的正整数的个数 */double totPjz = 0.0; /* 平均值 */int ReadDat (void);void Writedat(void);void CalValue()main ( )int i;clrscr ( );for(i = 0; i MAXNUM; i+)xxi = 0;if (Readdat ()printf(“数据文件 IN20.DAT 不能打开!/007/n“);return;CalValue ( );pr
7、intf(“文件 IN20.DAT 中共有正整数=%d 个/n“, totNum);printf(“符合条件的正整数的个数=%d 个/n“, totCnt);printf(“平均值=%.21f/n“, totPjz);Writedat ( );int Readdat (void)FILE *fp;int i = 0;if(fp = fopen (“IN20.DAT“, “r“) = NULL)return 1;while(! feof (fp)fscanf(fp, “%d,“, fclose (fp);return 0;void Writedat(void)FILE *fp;fp = fope
8、n(“OUT20.DAT“, “w“);fprintf(fp, “%d/n%d/n%.21f/n“, totNum, totCnt, totPjz);fclose (fp);(分数:100.00)_正确答案:(void CalValue()int i, thou, hun, ten, data;int ab;long sum=0;for (i=0; iHAXNUM; i+)if(MXi0)totNum+; /*统计正整数的个数*/thou=xxi/1000; /*求正整数的千位数*/hun=xxi%1000/100; /*求正整数的百位数*/ten=xxi%100/10; /*求正整数的十位数
9、*/data=xxi%10; /*求正整数的个位数*/ab=thou+hun+ten+data;if (ab%2=0) /*如果各位数字之和是偶数*/totCnt+;sum=sum+xxi; /*计算满足条件的数的个数 totCnt和这些数的总和 sum*/totPjz=sum/totCnt; /*求这些数的算术平均值 totPjz*/)解析:解析 本题的解题思路是首先利用一个 for循环来依次从数组中取得的数,由于题目要求求数组中正整数的个数,因此,对于为零的整数,不做任何处理,接着去取下一个数。只要某个数大于零,则该数一定是正整数,这时就给变量 totNum(正整数的个数)累加 1,用语句“thou=xxi/1000;hun=xxi%1000/100; ten=xxi%100/10;data=xxi%10;”可以实现取得当前被处理数的千位、百位、十位,以及个位上的数字值,之后判断求得的各个位上的数字值之和是否是偶数。若上述条件成立,则给变量totCnt的值加 1,同时把当前符合条件的数累加到变量 sum中去,最终利用 totPjz来求得满足所给条件的所有数的平均值。