从文本文件中读取双打(使用C / Visual Studio)

时间:2011-07-05 14:47:29

标签: c visual-studio visual-studio-2010 text-files scanf

我有一个带有数字的文本文件:每行有两个数字,用空格分隔。每对数字代表(x,y)坐标。我试图在C中写这个,因为它是我所知道的语言,但我在Visual Studio 2010中工作。我的代码如下:

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>

#define MAXPOINTS 10

int _tmain(int argc, _TCHAR* argv[])
{
    double points [MAXPOINTS];

    int i;
    for (i = 0; i < MAXPOINTS; i++) {
        points[i] = 0.0;
    }

    FILE* pFile;
    pFile = fopen ("points.txt","r");

    if (pFile == NULL)
    {
        printf("Could not open file\n");
        return 0;
    }

    rewind (pFile);

    i = 0;
    while (fscanf(pFile, "%f %f", &points[i], &points[i + 1]) == 2) {
        printf("blah\n");
        i = i + 2;
    }

    for (i = 0; i < MAXPOINTS; i++) {
        printf("[%d] = %f\n", i, points[i]);
    }

    fclose (pFile);
    return 0;
}

输出结果为:

blah
blah
blah
[0] = 0.000000
[1] = 0.000000
[2] = 0.000000
[3] = 0.000000
[4] = 0.000000
[5] = 0.000000
[6] = 0.000000
[7] = 0.000000
[8] = 0.000000
[9] = 0.000000

其中points.txt有三行:

100 200
300 400
500 500

我无法弄清楚为什么数字没有被读入数组。

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

%f格式需要指向float的指针,并且您指向double。