c++二进制流怎么向文本中输入换行
4个回答
展开全部
能啊,参考谭浩强的那本书,文件操作那章!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-01-11
展开全部
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ofstream File;
File.open("1.txt",ios::out);
File<<"你好"<<endl;
File<<"吃饭了吗"<<endl;
File.close();
system("pause");
return 0;
}
#include <fstream>
using namespace std;
int main()
{
ofstream File;
File.open("1.txt",ios::out);
File<<"你好"<<endl;
File<<"吃饭了吗"<<endl;
File.close();
system("pause");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
ofstream ofs("1.txt");
string str ("你好\n吃饭了吗");
ofs.write(str.c_str(), str.size());
string str ("你好\n吃饭了吗");
ofs.write(str.c_str(), str.size());
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询