PAT乙级1041

题目链接

https://pintia.cn/problem-sets/994805260223102976/problems/994805281567916032

题解

简单的信息录入和查询而已。

根据需求,使用试机座位号作为学生的标识进行信息录入和查询。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// PAT BasicLevel 1041
// https://pintia.cn/problem-sets/994805260223102976/problems/994805281567916032

#include <iostream>
#include <string>
using namespace std;

// 学生类
class Student{
public:
string zhunkaozhenghao;
int kaoshizuoweihao;
Student() {}
Student(string zhunkaozhenghao, int kaoshizuoweihao){
this->zhunkaozhenghao = zhunkaozhenghao;
this->kaoshizuoweihao = kaoshizuoweihao;
}
void print(){cout << zhunkaozhenghao << ' ' << kaoshizuoweihao << endl;}
};

int main()
{
// n个学生
int n;
Student stuArr[1001]; // 学生信息
string zhunkaozhenghao; // 准考证号
int kaoshizuoweihao; // 考试座位号
int shijizuoweihao; // 试机位号

// 录入学生信息
cin >> n;
for(int i=0;i<n;++i){
cin >> zhunkaozhenghao >> shijizuoweihao >> kaoshizuoweihao;
stuArr[shijizuoweihao]=Student(zhunkaozhenghao,kaoshizuoweihao);
}

// 查询m个学生的信息并输出
int m;
cin >> m;
for(int i=0;i<m;++i){
cin >>shijizuoweihao;
stuArr[shijizuoweihao].print();
}

//system("pause");
return 0;
}

作者:@臭咸鱼

转载请注明出处:https://www.cnblogs.com/chouxianyu/

欢迎讨论和交流!