用C++从txt文件中读取二维数组
这是我的代码
#include<bits/stdc++.h>
using namespace std;
int main()
{
char arr1[10][10];
cout << "Reading Start" << endl;
ifstream rfile("test.txt");
rfile.getline(arr1[10], 10);
int i, j;
for (i = 0; i < 6; i++)
{
for (j = 0; i < 6; j++)
{
cout << arr1[i][j];
}
}
cout << "
Read Done" << endl << endl;
rfile.close();
}
这是我的test.txt文件
0 4 7 0 0 0
4 0 0 5 3 0
7 0 0 0 6 0
0 5 3 0 0 2
0 3 4 0 0 2
0 0 0 2 2 0
我想读这个矩阵,但当使用上面的代码时,它显示核心转储输出,有人能给我一个更好的解决方案来做这件事吗?
解决方案
有很多其他方法可以执行特定任务,但我想您的方法没有错,您只是在第二个for循环条件中犯了一个简单的键入错误。所以我会为你修复你的代码。 您也可以一次只输入一个值。
#include<bits/stdc++.h>
using namespace std;
int main()
{
char arr1[10][10];
cout <<"Reading Start" <<endl;
ifstream rfile("test.txt");
int i,j;
for(i=0;i<6;i++){
for(j=0;j<6;j++){
rfile >> arr1[i][j];
cout << arr1[i][j] << " ";
}
cout << endl;
}
cout <<"
Read Done" <<endl<<endl;
rfile.close();
}
输出:
相关文章