我有一个数据文件,其内容是,例如,
1 0 1
1 0
1 0 1 0
0 0 1
(每行可能有不同的长度)。
如果我想编写像(在C / C ++中)的代码
for (i = 0; i < 2; i++)
{ for (j = 0; j < 2; j++)
{ myfile >> myarray[i][j];
}
}
读取文件中的元素并将其值传递给二维数组myarray[10][10]
。
我该如何检查一条线是否已完成?
答案 0 :(得分:0)
使用
fgets()
读到行尾。
char name[5][20];
for(i=0;i<5;i++)
fgets(name[i], 20,stdin); /* 3rd parameter is the stream from which you want to read */
答案 1 :(得分:0)
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>
#include <iterator>
using namespace std;
int main(){
ifstream myfile("data.txt");
string aLine;
vector<vector<int> > myarray;
while(getline(myfile, aLine)){
stringstream ss(aLine);
vector<int> v((istream_iterator<int>(ss)), istream_iterator<int>());
myarray.push_back(v);
}
for(int i=0;i < myarray.size(); ++i){
for(int j=0; j < myarray[i].size(); ++j)
cout << myarray[i][j] << ' ';
cout << endl;
}
}