ofstream输出表格
时间: 2024-04-30 12:17:41 浏览: 40
可以使用ofstream来输出表格,具体步骤如下:
1. 打开文件并写入表头
```c++
ofstream outfile("table.csv");
outfile << "Name,Age,Gender\n";
```
2. 循环输出每一行数据
```c++
string name, gender;
int age;
while (/* 读入每一行数据 */) {
outfile << name << "," << age << "," << gender << "\n";
}
```
3. 关闭文件
```c++
outfile.close();
```
完整示例代码如下:
```c++
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
// 打开文件并写入表头
ofstream outfile("table.csv");
outfile << "Name,Age,Gender\n";
// 循环输出每一行数据
string name, gender;
int age;
while (/* 读入每一行数据 */) {
outfile << name << "," << age << "," << gender << "\n";
}
// 关闭文件
outfile.close();
return 0;
}
```
其中,"table.csv"是输出文件的文件名,可以根据需要修改。输出的表格数据以逗号分隔,并以换行符结束,可以根据需要进行修改。
阅读全文