初始化
#include
#include
#define MAXNUM 200
int xx[MAXNUM] ;
int totNum = 0 ; /* 文件IN.DAT中共有多少個正整數(shù) */
int totCnt = 0 ; /* 符合條件的正整數(shù)的個數(shù) */
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(數(shù)據(jù)文件IN.DAT不能打開!\007\n) ;
return ;
}
CalValue() ;
printf(文件IN.DAT中共有正整數(shù)=%d個\n, totNum) ;
printf(符合條件的正整數(shù)的個數(shù)=%d個\n, totCnt) ;
printf(平均值=%.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(OUT1.DAT, w) ;
fprintf(fp, %d\n%d\n%.2lf\n, totNum, totCnt, totPjz) ;
fclose(fp) ;
}
A::
B:EXEC
C:EXEC SQL
D:SQL
題面:
已知在文件IN.DAT中存有若干個(個數(shù)<200)四位數(shù)字的正整數(shù), 函數(shù)ReadDat( )是讀取這若干個正整數(shù)并存入數(shù)組xx中。請編制函數(shù)CalValue( ), 其功能要求: 1. 求出這文件中共有多少個正整數(shù)totNum; 2.求出這些數(shù)中的各位數(shù)字之和是奇數(shù)的數(shù)的
個數(shù)totCnt, 以及滿足此條件的這些數(shù)的算術(shù)平均值totPjz, 最后調(diào)用函數(shù)WriteDat()把所求的結(jié)果輸出到文件OUT1.DAT中。
注意: 部分源程序存放在PROG1.C中。
請勿改動主函數(shù)main( )、讀數(shù)據(jù)函數(shù)ReadDat()和輸出數(shù)據(jù)函數(shù)WriteDat()的內(nèi)容。
答案:
#include
#include
#define MAXNUM 200
int xx[MAXNUM] ;
int totNum = 0 ; /* 文件IN.DAT中共有多少個正整數(shù) */
int totCnt = 0 ; /* 符合條件的正整數(shù)的個數(shù) */
double totPjz = 0.0 ; /* 平均值 */
int ReadDat(void) ;
void WriteDat(void) ;
void CalValue(void)
{
int i, n;
long cnt = 0 ;
for(i = 0 ; i < MAXNUM ; i++){
if(xx[i] > 0){/*是正整數(shù)*/
totNum++ ;/*計數(shù)*/
/*求各位之和*/
n = xx[i]/1000 + (xx[i]%1000)/100 + (xx[i]%100)/10 + xx[i]%10;
if( n&1 ){/*是奇數(shù)*/
totCnt++ ;/*統(tǒng)計個數(shù)*/
cnt += xx[i] ;/*計算累加和*/
}
}
}
totPjz = (double) cnt / totCnt ;/*計算平均值*/
}
void main()
{
int i ;
clrscr() ;
for(i = 0 ; i < MAXNUM ; i++) xx[i] = 0 ;
if(ReadDat()) {
printf(數(shù)據(jù)文件IN.DAT不能打開!\007\n) ;
return ;
}
CalValue() ;
printf(文件IN.DAT中共有正整數(shù)=%d個\n, totNum) ;
printf(符合條件的正整數(shù)的個數(shù)=%d個\n, totCnt) ;
printf(平均值=%.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(OUT1.DAT, w) ;
fprintf(fp, %d\n%d\n%.2lf\n, totNum, totCnt, totPjz) ;
fclose(fp) ;
}
本題評析:
這個題目的關(guān)鍵是如何求出一個4位正整數(shù)各位時之和,以及如何判斷一個正整數(shù)是奇數(shù)還是偶數(shù)。
對于一個4位正整數(shù)x來說,它的千位數(shù)=x/1000;
百位數(shù)=(x%1000)/100;
十位數(shù)=(x%100)/10x
個位數(shù)=x%10。
判斷一個正整數(shù)是奇數(shù)還是偶數(shù)的方法很多,我們這里用的是看它的最低位是0還是1,我們知道:對于一個二進制正整數(shù),它的最低位如果是1,則這個數(shù)是奇數(shù);反之,則是偶數(shù)。這里我們是將這個正整數(shù)和1做“&”(與)運算,即保留這個數(shù)的最低位,其余全部清0。
當然,還一個常見的方法就是讓這個數(shù)和2做“%”(模)運算。很顯然,與運算要優(yōu)于模運算。
請參看參考答案及注釋。