标签:
Description
Input
Output
Sample Input
dog ogday cat atcay pig igpay froot ootfray loops oopslay atcay ittenkay oopslay
Sample Output
cat eh loops
其实用cin输入输出也可以
map<T,T>dd;
以及gets(a)与sscanf(a,"%s",str)配合用法;
a为char a[45];
#include<cstdio> #include<string> #include<iostream> #include<map> using namespace std; int main() { map<string,string>dic; char a[11],b[11]; int i=0; char str[21]; while(gets(str)) { if(str[0]==‘\0‘){break;} sscanf(str,"%s %s",a,b); dic[b]=a; } char c[11]; string qq; while(scanf("%s",c)!=EOF) { string s=c; qq=dic[s]; if(qq.length()==0)cout<<"eh"<<endl; else cout<<qq<<endl; } return 0; }
标签:
原文地址:http://www.cnblogs.com/jin-nuo/p/5540287.html