注册 登录
编程论坛 C++ Builder

求一个代码的大概轮廓

x1148291109 发布于 2017-09-11 16:09, 3729 次点击
求一个c++代码的大概轮廓  比如输入邮编查询区域名  输入区域名查询邮编
 
  
                     
1 回复
#2
rohalloway2018-10-05 16:30
程序代码:

#include<iostream>
#include<string>
#include <map>

using namespace std;

void main()
{
    map<int, string> m;
    map<int, string>::iterator mit;

    m.insert(map<int, string>::value_type(100000, "北京"));
   
    m.insert(pair<int, string>(200000, "上海"));


    for (mit = m.begin(); mit != m.end(); mit++)
    {
        cout << mit->first << " " << mit->second << endl;
    }

    cout << endl;
    system("pause");
}


最好是把数据放在数据库或记事本里
1