C++从TXT格式文件中读入数据并写入二维数组
txt文件中有一256*256的float数据,怎样用C++读取数据并将其存在256*256float类型的数组中呢?没分,谢各位大神咯。。。有分一定补上...
txt文件中有一256*256的float数据,怎样用C++读取数据并将其存在256*256float类型的数组中呢?没分,谢各位大神咯。。。有分一定补上
展开
展开全部
#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;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以说一下你txt文件里面的格式吗?
不然不好写代码
不然不好写代码
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询