全國計(jì)算機(jī)等級(jí)考試筆試:四級(jí)精練(1)

字號(hào):

初始化
    #include
    #include
    #define MAXNUM 200
    int xx[MAXNUM] ;
    int totNum = 0 ; /* 文件IN.DAT中共有多少個(gè)正整數(shù) */
    int totCnt = 0 ; /* 符合條件的正整數(shù)的個(gè)數(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個(gè)\n", totNum) ;
    printf("符合條件的正整數(shù)的個(gè)數(shù)=%d個(gè)\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中存有若干個(gè)(個(gè)數(shù)<200)四位數(shù)字的正整
    數(shù), 函數(shù)ReadDat( )是讀取這若干個(gè)正整數(shù)并存入數(shù)組xx中。請(qǐng)
    編制函數(shù)CalValue( ), 其功能要求: 1. 求出這文件中共有多少
    個(gè)正整數(shù)totNum; 2.求出這些數(shù)中的各位數(shù)字之和是奇數(shù)的數(shù)的
    個(gè)數(shù)totCnt, 以及滿足此條件的這些數(shù)的算術(shù)平均值totPjz, 最
    后調(diào)用函數(shù)WriteDat()把所求的結(jié)果輸出到文件OUT1.DAT中。
    注意: 部分源程序存放在PROG1.C中。
    請(qǐng)勿改動(dòng)主函數(shù)main( )、讀數(shù)據(jù)函數(shù)ReadDat()和輸出數(shù)據(jù)
    函數(shù)WriteDat()的內(nèi)容。