C++_简单输出到文件

#include<iostream>
#include<fstream>
using namespace std;
int main()
{
    char outfile[50];
    ofstream out;
    cout<<"请输入文件存储目录:"<<endl;
    cin>>outfile;
    out.open(outfile);
    if(out.fail())
    {
        cout<<"找不到该文件目录!"<<endl;
        exit(1);
    }
    out<<"我很好!"<<endl;
    return 0;
}

 

posted @ 2013-04-14 17:24  开心成长  阅读(227)  评论(0编辑  收藏  举报