已知数据文件in.dat中存有300个四位数,并已调用读函数readl)at()把这些数存入数组a中,请编写函数jsValue(),其功能是:求出千位数上的数加百位数上的数等于十位数上的数加个位数上的数的个数cnt,冉把所有满足此条件的四位数依次存入数组b

admin2013-12-10  5

问题 已知数据文件in.dat中存有300个四位数,并已调用读函数readl)at()把这些数存入数组a中,请编写函数jsValue(),其功能是:求出千位数上的数加百位数上的数等于十位数上的数加个位数上的数的个数cnt,冉把所有满足此条件的四位数依次存入数组b中,然后对数组b的四位数按从大到小的顺序进行排序。最后nmin()函数调用写函数writeDat()把数组b中的数输出到文件out.dat中。
    例如:7153,7+1=5+3,则该数满足条件存
    人数组b中,且个数cnt=cht+1。
    8129,8+11=2+9,则该数不满足条件.忽略。
【试题程序】
    #include
    int at3003.br3001,cnt=0;
    void readDat();
    void writeDat();
    jsValue()
    {
    }
    main()
    {
    int i;
    readDat();
    jsValue();
    writeDat();
    printf(“cnt=%d\n”,cnt);
    for(i=0;i    printf(“b[%d]=%d\n”.i’b);
    }
    void readDat()
    {
    FILE*fp;
    int i;
    fp=fopen(“in.dat”,“r”);
    for(i=0;i<300;i++)
    fscanf(fp,“%d,”,&a);
    felose(fp);
    }
    void writeDat()
{
FILE*fp;
int i;
fp=fopen(“out.dat”,“W”);
fprintf(fp,“%d\n”,cnt);
for(i=0;i    fprintf(fp.”%d\n”,b);
fclose(fp);
}

选项

答案jsValue() { int i,j; /*定义变量*/ int a1,a2,a3,a4; int temp; for(i=0;i<300;i++) {a1=a[i]%10; /*数位分解*/ a2=a[i]%100/10; a3=a[i]%1000/100; a4=a[i]/1000; if(a4+a3==a2+a1) /*判断条件*/ b[cnt++]=a[i]; } for(i=0;i
解析
转载请注明原文地址:https://kaotiyun.com/show/WblZ777K
0

最新回复(0)