我的文件看起来像这样
0 0 5
1 10 20
2 10 10
3 15 3
4 20 30
5 25 5
我把它保存在一个向量中。我不知道如何阅读它,以便我可以将每个组件保存在不同的向量中。
尝试解决方案:
if (inFile.is_open()) {
while ( inFile) {
getline (inFile,line);
cout << line << endl;
}
inFile.close();
}