1041 考试座位号

2022/7/8 23:20:19

本文主要是介绍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的使用



这篇关于1041 考试座位号的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程