C++从TXT格式文件中读入数据并写入二维数组

txt文件中有一256*256的float数据,怎样用C++读取数据并将其存在256*256float类型的数组中呢?没分,谢各位大神咯。。。有分一定补上

第1个回答  推荐于2018-05-09
#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>

using namespace std;

int main ()
{
    string PATH("");
    int row = 0,col = 0;
    printf("input path:\n");
    getline(cin,PATH);
    printf("input rows and columns\n");
    scanf("%d%d",&row,&col);

    if(row<0||col<0)
    {
        printf("wrong size!\n");
        return -1;
    }

    FILE*fp = fopen(PATH.c_str(),"r");
    if(fp==NULL)
    {
        printf("wrong path\n");
        return -1;
    }

    float array[row][col];
    for(int i=0; i <row; ++ i)
        for(int j=0; j <col; ++ j)
        {
            fscanf(fp,"%f",&array[i][j]);
        }

    fclose(fp);
    for(int i=0; i <row; ++ i)
    {
        for(int j=0; j <col; ++ j)
        {
            printf("%f ",array[i][j]);
        }
        printf("\n");
    }

    return 0;
}

本回答被网友采纳
第2个回答  2015-09-06
可以说一下你txt文件里面的格式吗?
不然不好写代码本回答被提问者采纳
相似回答