如何逐行读取文件?

时间:2014-02-13 12:57:03

标签: c++

我有问题。我想从'lol.txt'中读取每一行。到目前为止,我所做的似乎并不奏效。这是我的代码:

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main()
{
ofstream file("lel.txt", ios::app);
ifstream file2("lol.txt");

//string write;
//getline(cin, write);
//file << write << "\n";
//file.close();
//}

string;
file2 >> read;
getline(cin, read);
cout << read;
}

谢谢!

P.S。:我正在使用Ubuntu和Code :: Blocks。

0 个答案:

没有答案