| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 530 人关注过本帖
标题:[求助]这个程序的问题在哪?
只看楼主 加入收藏
栖柏
Rank: 2
等 级:论坛游民
威 望:3
帖 子:1103
专家分:17
注 册:2007-8-23
收藏
 问题点数:0 回复次数:3 
[求助]这个程序的问题在哪?

#include<iostream>
#include<exception>
#include<stdexcept>
#include<fstream>
#include<sstream>
#include<string>
#include<map>

using namespace std;

ifstream& open_file(ifstream &in,const string &file)
{
in.close();
in.clear();
in.open(file.c_str());
return in;
}

int main(int argc,char **argv)
{
map<string,string> trans_map;
string key,value;
if(argc!=3)
throw runtime_error("wrong number of arguments");
ifstream map_file;
if(!open_file(map_file,argv[1]))
throw runtime_error("no transformation file");
while(map_file>>key>>value)
trans_map.insert(make_pair(key,value));
ifstream input;
if(!open_file(input,argv[1]))
throw runtime_error("no inputfile");
string line;
while(getline(input,line))
{
istringstream stream(line);
string word;
bool firstword=true;
while(stream>>word)
{
map<string,string>::const_iterator map_it=trans_map.find(word);
if(map_it!=trans_map.end())
word=map_it->second;
if(firstword)
firstword=false;
else
cout<<" ";
cout<<word;
}
cout<<endl;
}
return 0;
}

/*abnormal program termination非正常程序终止*/

2007-09-28 16:22
aipb2007
Rank: 8Rank: 8
来 自:CQU
等 级:贵宾
威 望:40
帖 子:2879
专家分:7
注 册:2007-3-18
收藏
得分:0 
运行有问题吗?

警告的话用

#pragma warning (disable : 4786)

消除。似乎只在6.0里有警告吧!

Fight  to win  or  die...
2007-09-28 21:21
栖柏
Rank: 2
等 级:论坛游民
威 望:3
帖 子:1103
专家分:17
注 册:2007-8-23
收藏
得分:0 

有问题


You have lots more to work on! Never give up!c language!
2007-09-29 16:07
栖柏
Rank: 2
等 级:论坛游民
威 望:3
帖 子:1103
专家分:17
注 册:2007-8-23
收藏
得分:0 

有空的到我这来坐坐,具体指点一下


You have lots more to work on! Never give up!c language!
2007-09-29 21:21
快速回复:[求助]这个程序的问题在哪?
数据加载中...
 
   



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

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