#include <fstream> using namespace std; int main() { ifstream fin("in.txt"); ofstream fout; fout.open("out.txt"); while(!fin.eof()) { string tmp; fin>>tmp; fout<<tmp<<endl; } fin.close(); fout.close(); return 0; }
#include <fstream> using namespace std; int main() { ifstream fin("in.txt"); ofstream fout; fout.open("out.txt"); while(!fin.eof()) { string tmp; fin>>tmp; fout<<tmp<<endl; } fin.close(); fout.close(); return 0; }
上一篇:C语言正则表达式
C++ 模板匹配matchTemplate
从现在开始,进行linux的学习了,开始呢,总
在C++中如何实现文件的读写?作者: infobillows 发表日期: 2007-04-03 21:33 点击数
读写INI文件的C++实现
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M