c++读取txt文件读取一行后再换行读取
时间: 2023-07-18 10:10:15 浏览: 424
读取文件并换行
可以使用 `getline` 函数读取一行,再使用 `endl` 输出换行符,然后再使用 `getline` 函数读取下一行,如下所示:
```cpp
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
ifstream file("example.txt");
string line;
while (getline(file, line)) {
cout << line << endl;
getline(file, line); // 读取下一行
}
return 0;
}
```
以上代码会从文件 `example.txt` 中读取每一行,并且跳过每两行之间的空行。
阅读全文