PAT乙级1041 考试座位号 (15 分)

Posted 辉小歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT乙级1041 考试座位号 (15 分)相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
题目地址

#include<cstdio>
#include<iostream>
#include<map>
using namespace std;
int a[1005];
struct student
{
	string id;
	int a,b;
}stu[1005];
int main(void)
{
	int n; cin>>n;
	for(int i=0;i<n;i++)
	{
		cin>>stu[i].id>>stu[i].a>>stu[i].b;
		a[stu[i].a]=i;//建立映射关系 
	}
	int t; cin>>t;
	while(t--)
	{
		int number; cin>>number;
		cout<<stu[a[number]].id<<" "<<stu[a[number]].b<<endl;
	}
	return 0;
} 

以上是关于PAT乙级1041 考试座位号 (15 分)的主要内容,如果未能解决你的问题,请参考以下文章

PAT (Basic Level) Practice (中文)1041 考试座位号 (15 分)

PAT 1041. 考试座位号(15)

1041. 考试座位号(15)

1041 考试座位号

1041. 考试座位号(15)

1041. 考试座位号(15)