已知数据文件in.dat中存有300个四位数,并已调用读函数readDat()把这些数存入数组a中,请编写函数jsValue(),其功能是:求出所有这些四位数是素数的个数cnt,再把所有满足此条件的四位数依次存人数组b中,然后对数组b的四位数按从小到大的顺

admin2013-12-10  10

问题 已知数据文件in.dat中存有300个四位数,并已调用读函数readDat()把这些数存入数组a中,请编写函数jsValue(),其功能是:求出所有这些四位数是素数的个数cnt,再把所有满足此条件的四位数依次存人数组b中,然后对数组b的四位数按从小到大的顺序进行排序。最后main()函数调用写函数writeDat()把数组b中的数输出到out.dat文件中。
    例如:5591是素数,则该数满足条件存人数组
    b中,且个数cnt=cnt+1。
    9812是非素数,则该数不满足条件.应忽略。
【试题程序】
    #include
    int aE300~,bE3003,cnt=0;
    void readDtit();
    void writeDat();
    void jsValue();
    in!isP(int m)
    {
    int i;
    for(i=2;i    if(m 9,6i==0)return 0;
    return 1
    }
    void jsValue()
    {
    }
    void main()
    {
    in!i;
    readDat();
    jsValue();
    writeDat();
    printf(“cnt=Ad\n”,cnt);
    for(i=0;i    printf(”bE%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,”,&.aEi3);
  fclose(fp);
}
void writeDat()
{
  FILE*fp;
  int il
  fp=fopen(“out.dat”,”W”);
  fprintf(fp,“%d\n”,cnt);
  for(i:0;i    fprintf(fp,“9,6d\n”,bliP);
  fclose(fp);
}

选项

答案void jsValue() { int i,j; /*定义变量*/ int temp; for(i=0;i<300;i++) /*统计筛选*/ if(isP(a[i])) b[cnt++]=a[i]; for(i=0;ib[j]) {temp=b[i]; b[i]=b[j]; b[j]=temp; } }

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

最新回复(0)