#include<stdio.h>
#include<cstring>
#include<iostream>
#include<sstream>
#include<fstream>
using namespace std;
int main() {
double d = 12.23;
int a = 23;
ostringstream out;
//将数据写入到流中,out支持cout支持的数据类型,输出结果和cout一样s
out<<d<<endl;
out<<a<<endl;
//将运行信息写入到文件中
char *path = "text.txt";
ofstream fout(path);
if(fout) {
//将out流转换为string类型,写入到文件流中
fout<<out.str()<<endl;
fout.close();
}
}
原文:http://www.cnblogs.com/ineweyer/p/5055635.html