标签:style color io os ar for div sp cti
dog ogday cat atcay pig igpay froot ootfray loops oopslay atcay ittenkay oopslay
cat eh loops#include<cstdio> #include<cstring> #include<map> #include<string> using namespace std; map<string, string> ma; map<string, string>::iterator it; char str1[11], str2[11], str[22]; int main(){ while(gets(str) && str[0]){ sscanf(str,"%s%s", str1, str2); ma[str2] = str1; } while(scanf("%s", str1) != EOF){ it = ma.find(str1); // 用于查找,查找,茶渣 if(it == ma.end()) printf("eh\n"); else printf("%s\n", it->second.c_str()); } return 0; }
Babelfish (map 用法。<string, string>
标签:style color io os ar for div sp cti
原文地址:http://blog.csdn.net/u013514722/article/details/39502343