已知数据文件in.dat中存有300个四位数,并已调用读函数readDat()把这些数存入数组a中,请编写函数jsValue(),其功能是:求出个位数上的数减千位数上的数减百位数上的数减十位数上的数大于零的个数cnt,再求出所有满足此条件的四位数平均值pj

admin2013-12-10  6

问题 已知数据文件in.dat中存有300个四位数,并已调用读函数readDat()把这些数存入数组a中,请编写函数jsValue(),其功能是:求出个位数上的数减千位数上的数减百位数上的数减十位数上的数大于零的个数cnt,再求出所有满足此条件的四位数平均值pjzl以及所有不满足此条件的四位数平均值pjz2。最后main()函数调用写函数writeDat()把结果cnt,pjz1,pjz2输出到out.dat文件中。
【试题程序】
    #include
    int a[300],cnt=0;
    double pjz1=0.0,pjz2=0.0;
    void readDat();
    void writeDat();
    jsValue()
    {
    }
    main()
    {
    readDat();
    jsValue();
    writeDat();
    printf(”cnt=%d\n满足条件的平均值pjzl
=%7.21f\n不满足条件的平均值pjz2=9,67.21f\n”,
cnt,pjz1,pjz2);
    }
    void readDat()
    {
    FILE*fp;
    int i;
    fp=fopen(“in.dat”,“r”);
    for(i=0;i<300;i++)
    fscanf(fp,“%d,”,&a);
    fclose(fp);
    }
    void writeDat()
    {
    FILE*fp;
    fp=fopen(“out.dat”,“W”);
    fprintf(fp,”%d\n%7.21f\n%7.21f\n”.
cnt,pjz1,pjz2);
    fclose(fp);
    }

选项

答案jsValue() {int i; /*定义变量*/ int a1,a2,a3,a4; for(i=0;i<300;i++) {al=aEi]%10; /*数位分解*/ a2=a[i]9,6100/lO; a3=a[Q%1000/100; a4=a[i]/1000; if(al—a4一a3一a2>0) /*判断条件*/ {pjzl+=a[i]; cnt++; } else pjz2+=a[i]; } pjz1/=cnt; /*求平均值*/ pjz2/=(300一cnt); }

解析
转载请注明原文地址:https://kaotiyun.com/show/zElZ777K
0

随机试题
最新回复(0)