0

ファイルから double の配列をスキャンしています。この配列を出力して、ファイル内の各行の正しい値を取得できます。

このプロセス中に別のファイルを別のアレイにスキャンしようとすると、問題が発生します。

私は持っている:

//
//

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

int main (int argc, char **argv) {

  double c[13], d[13];
  char filename[20];
  double x1, x2, y1, y2, z1, z2, d1, d2, au, aux, auy;
  double dx, dy, dz, nnid, chk, nn;
  int n, b;
  char *in;
  in=argv[1];
  FILE* infile;
  FILE* inbfile;
  infile = fopen(in, "r");
  inbfile = fopen("copy.bt", "r");

  while (!feof(infile)) {

    fscanf(infile, "%f %f %e %e %e %e %e %e %e %e %e %e %e %f",c,c+1,c+2,c+3,c+4,c+5,c+6,c+7,c+8,c+9,c+10,c+11,c+12,c+13);
    printf("Selected Particle A: %f\n",c[0]);
    n=0;

    while (!feof(infile)) { 
      printf("%f\n",c[0]);
      fscanf(infile, "%f %f %e %e %e %e %e %e %e %e %e %e %e %f",d,d+1,d+2,d+3,d+4,d+5,d+6,d+7,d+8,d+9,d+10,d+11,d+12,d+13);
      printf("%f\n",c[0]);
      printf("Selected Particle B: %f\n",d[0]);

      /**/
      printf("%f = %f ?\n",c[0],d[0]);
      if (c[0]==d[0]) {
        printf("Same Particle SKIP...\n");
      }
      else {  

        dx = (d[4])-(c[4]);
        dy = (d[5])-(c[5]);
        dz = (d[6])-(c[6]);

        printf("dx dy dz %e %e %e\n",d[4],d[5],d[6]);

        /**/
        if (n == 0) {  
          au=pow(((dx*dx*dx)+(dy*dy*dy)+(dz*dz*dz)),(1.0/3.0));
          printf("%f is %e from %f\n",c[0],au,d[0]);
        }
        else { 
          aux=pow(((dx*dx)+(dy*dy)+(dz*dz)),(1.0/3.0));
          printf("%f is %e from %f\n",c[0],aux,d[0]);
          if (aux < au) {
            au = aux;
            nnid = d[0];
          }
        }
        /**/

      }
      n++;
      nn=d[1];
      /**/

    }

    printf("%f Is Particle %f At %e\n", c[1], nnid, au);

  }

  fclose(infile);
  fclose(inbfile);
  return 0;

}

では、なぜ価値が変化するのでしょうか。私が行ったのは、別のファイルの最初の行を別の配列にスキャンすることだけです。

4

2 に答える 2

3

13 個の要素を持つ配列に 14 個の値を読み取ろうとすると、未定義の動作が発生します。代わりに配列を宣言しますfloat c[14], d[14]

dとして宣言するとfloat d[13]d+12は配列の最後の要素を指し、配列d+13の末尾を超えているため、読み取りは許可されません。

于 2012-12-02T16:50:29.280 に答える
1

Interjay の回答に追加するには、別の場所で未定義の動作を呼び出しています。doubleフォーマット指定子を使用して s をスキャンしようとしてい%fますが、正しいフォーマット指定子はdoubleです%lf

編集: 間違ったコードを提供していたようです。そのため、上記のステートメントは正しくありません。(ただし、今後の訪問者の参考としてこれを保持します。)

于 2012-12-02T16:53:58.430 に答える