1个回答
2013-11-22
展开全部
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a[10];
ofstream outfile("abc.txt",ios::out);
if (!outfile)
{
cerr<<"open error"<<endl;
exit(1);
}
outfile<<"你好,欢迎你来到C++的世界"<<endl;
outfile.close();
return 0;
}
#include <fstream>
using namespace std;
int main()
{
int a[10];
ofstream outfile("abc.txt",ios::out);
if (!outfile)
{
cerr<<"open error"<<endl;
exit(1);
}
outfile<<"你好,欢迎你来到C++的世界"<<endl;
outfile.close();
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询