码迷,mamicode.com
首页 > 其他好文 > 详细

poj2503

时间:2014-08-10 12:44:00      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:os   io   strong   ar   ios   har   poj   on   

#include <iostream>
#include <string>
#include <map>
using namespace std;
char s[100],s1[100],s2[100];
map <string,string> my;
map <string,string> ::iterator it;

int main(int argc, char *argv[])

int i;
 while (gets(s))
 {

 if (strcmp(s,"")==0) break;
  sscanf(s,"%s%s",s1,s2);
  my[s2]=s1;
 }
 while (scanf("%s",s)!=EOF)
 { 

it=my.find(s);
  if ( it!=my.end()) cout<<my[s]<<endl; 

      else               cout<<"eh\n";
 }      
 return 0;
}

poj2503,布布扣,bubuko.com

poj2503

标签:os   io   strong   ar   ios   har   poj   on   

原文地址:http://www.cnblogs.com/2014acm/p/3902556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!