#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();
    }
 }

 

posted on 2015-12-17 23:13  ineweyer  阅读(1944)  评论(0)    收藏  举报