其他分享
首页 > 其他分享> > 1041 考试座位号

1041 考试座位号

作者:互联网

代码

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

using namespace std;


int main(){
string a;
int b,c;
int m,n;
int d;
map<int,string> mp1;
map<int,int> mp2;
cin>>n;
for(int i=0;i<n;i++){
cin>>a;
cin>>b;
cin>>c;
mp1[b]=a;
mp2[b]=c;
}
cin>>m;
for(int i=0;i<m;i++){
cin>>d;
if(i==0){
cout<<((mp1.find(d))->second)<<" "<<((mp2.find(d))->second);
}
else{
cout<<endl<<((mp1.find(d))->second)<<" "<<((mp2.find(d))->second);
}

}
   return 0;
}

重点

map的使用

 

标签:map,1041,int,cin,second,coutsecond,include,座位号,考试
来源: https://www.cnblogs.com/wodeblog1982/p/16459780.html