如何通过在C中逐行读取来读取或存储整数?

时间:2011-06-04 09:21:02

标签: c io stdin

我正在尝试读取数字行并对它们进行一些计算。但是,我需要他们以某种方式逐行分开,但我无法弄清楚如何做到这一点。这是我的代码:

int main()
{
    int infor[1024]; //2-d array perhaps??
    int n, i;

    i=0;

    int imgWidth, imgHeight, safeRegionStart, safeRegionWidth;
    FILE *fp;

    fp = stdin;

    while (!feof(fp))
    {
        fscanf(fp, "%d", &infor[i++]);
    }
}

输入看起来像这样:

4 3 1 2 -16777216 -16711936 -65536 -16777216 -1 -65536 -65536 -16711936 -16777216 -65536 -16711936 -16777216     
3 4 1 1 -16777216 -16711936 -1 -1 -65536 -16777216 -16777216 -65536 -1 -1 -65536 -16711936 

任何人都可以解释如何从一行到另一行吗?


修改

int main()
{
    FILE * fp = stdin;
    char buffer[1024];
    long arr[2][16];

    int i = 0,
        j = 0;

    char * pEnd;

    while(fgets(buffer, sizeof(buffer), fp))
    {
        j = 0;
        if(buffer[0] == '\n')
            continue;

        pEnd = buffer;
        while(*pEnd != '\0')
        {
            arr[i][j++]=strtol(pEnd,&pEnd,10);
        }

        i++;
    }

    int imgWidth,
        imgHeight,
        safeRegionStart,
        safeRegionWidth;

    imgWidth = arr[1][0];
    imgHeight = arr[1][1];
    safeRegionStart = arr[1][2];
    safeRegionWidth = arr[1][3];

    printf("Value of i is %d\n", i);
    printf("%d %d %d %d ",
           imgWidth,
           imgHeight,
           safeRegionStart,
           safeRegionWidth);

    return 0;
}

1 个答案:

答案 0 :(得分:3)

我认为您的2D阵列想法可能是正确的,特别是如果您想要将数据点分开。使用fgets将每行作为字符串引入,然后使用带sscanf的循环将各个数字解析为数组的单行。可以使用strtol之类的函数代替sscanf步骤来直接获取数字。

例如*(您需要调整缓冲区的大小和数组的大小,但对于您提供的数据文件): (针对stdin方法的编辑)

 #include <stdio.h>

int main(){

    char buffer[1024];
    long arr[2][16];
    int i = 0,j=0;
    char * pEnd;
    FILE *fp = stdin;
    while(fgets(buffer,sizeof(buffer),fp))
    {
        j=0;
        if(buffer[0]=='\n')
            continue;

        pEnd = buffer;
        while(*pEnd !='\0')
        {
            arr[i][j++]=strtol(pEnd,&pEnd,10);

        }

        i++;
    }

fclose(fp);
printf("arr[0][0]=%d  arr[0][1]=%d  arr[0][2]=%d\n",arr[0][0],arr[0][1],arr[0][2]);
printf("arr[1][0]=%d  arr[1][1]=%d  arr[1][2]=%d\n",arr[1][0],arr[1][1],arr[1][2]);


}

exe名为rowdata2,文本文件为rowdata.txt,因此我将其作为rowdata2 < rowdata.txt运行并获得了正确的结果。

[*]它不会赢得任何选美比赛