| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 404 人关注过本帖
标题:文件问题
只看楼主 加入收藏
lixang
Rank: 1
等 级:新手上路
帖 子:231
专家分:0
注 册:2006-7-15
收藏
 问题点数:0 回复次数:1 
文件问题


如何将a.txt文件的内容
平均分配到,
b.txt和 c.txt中

搜索更多相关主题的帖子: 文件 
2006-11-14 18:45
wangxiang
Rank: 2
等 级:新手上路
威 望:5
帖 子:376
专家分:0
注 册:2006-3-28
收藏
得分:0 

1.把a.txt的文件内容放进vector<string> svec中
2.分别读取svec的一半内容放到 b.txt和 c.txt中

[CODE]#include <fstream>
#include <vector>
#include <iostream>
#include <string>
using namespace std;
int main()
{
ifstream infile("D:\\a.txt",ios::in);
if(!infile)
{
cout<<"can't open a.txt"<<endl;
exit(-1);
}
vector<string> svec;
string word;
while(infile>>word)
svec.push_back(word);
infile.close();
ofstream outfile1("D:\\b.txt");
if(!outfile1)
{
cout<<"can't open b.txt"<<endl;
exit(-1);
}
vector<string>::const_iterator iter = svec.begin();
int ct = 0;
while(iter != svec.begin()+svec.size()/2)
{
ct++;
if(ct == 15)
outfile1<<endl;
outfile1<<*iter<<' ';
iter++;
}
outfile1.close();
ofstream outfile2("D:\\c.txt");
if(!outfile2)
{
cout<<"can't open c.txt"<<endl;
exit(-1);
}
iter = svec.begin()+svec.size()/2;
ct = 0;
while(iter != svec.end())
{
ct++;
if(ct == 15)
outfile2<<endl;
outfile2<<*iter<<' ';
iter++;
}
outfile2.close();
return 0;
}


[/CODE]


2006-11-14 22:40
快速回复:文件问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.027300 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved