| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 592 人关注过本帖
标题:提示遇到问题需要关闭是什么意思啊
取消只看楼主 加入收藏
crazyc
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2006-8-5
收藏
 问题点数:0 回复次数:0 
提示遇到问题需要关闭是什么意思啊

#pragma warning(disable:4876)
#include<iostream>
#include<string>
#include<map>
using namespace std;
typedef map<int ,string , less<int> > INT2STRING;
void main()
{
INT2STRING theMap;
INT2STRING::iterator theIterator;
string theString="";
int index;
theMap.insert(INT2STRING::value_type(0,"zero"));
theMap.insert(INT2STRING::value_type(1,"one"));
theMap.insert(INT2STRING::value_type(2,"two"));
theMap.insert(INT2STRING::value_type(3,"three"));
theMap.insert(INT2STRING::value_type(4,"four"));
theMap.insert(INT2STRING::value_type(5,"five"));
theMap.insert(INT2STRING::value_type(6,"six"));
theMap.insert(INT2STRING::value_type(7,"seven"));
theMap.insert(INT2STRING::value_type(8,"eight"));
theMap.insert(INT2STRING::value_type(9,"nine"));
for( ; ;)
{
cout<<"Enter \"q\" to quit,or enter a Number:";
cin>>theString;
if(theString=="q")
break;
for(index=0;index<theString.length ();index++)
{
theIterator!=theMap.find(theString[index]-'0');
if(theIterator!=theMap.end())
cout<<(*theIterator).second<<" ";
else
cout<<"[err]";

}
cout<<endl;

}
}

提示遇到问题需要关闭是什么意思啊

搜索更多相关主题的帖子: 提示 
2007-03-18 08:13
快速回复:提示遇到问题需要关闭是什么意思啊
数据加载中...
 
   



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

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