c++读取txt文件读取一行后进行换行操作
时间: 2023-07-18 10:10:15 浏览: 134
C++读取TXT文件识别特定内容修改
读取文件的每一行后,可以在输出该行内容后,使用 `cout` 输出一个换行符 `"\n"` 或者使用 `cout << endl`,即可进行换行操作,示例如下:
```cpp
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
ifstream file("example.txt");
string line;
while (getline(file, line)) {
cout << line << "\n"; // 输出换行符
}
return 0;
}
```
以上代码会从文件 `example.txt` 中读取每一行,并在该行内容后输出一个换行符。
阅读全文