标签:数字 char 个数 clu std scan const pre 座位号
每个PAT考生在参加考试时都会被分配两个座位号:一个是试机座位;另一个是考试座位,正常情况下,考生在入场时先得到试机座位号,入座进入试机状态后,系统会现显示该考生的考试座位号,考试时考生需要换到考试座位就座。但有些考生迟到了,试机已经结束,它们只能拿着领到的试机座位号求助于你,从后台查出他们的考试座位号码
对应每个需要查询的试机座位号,在一行中输出对应考生的准考证号和考试座位号,中间用1个空格分隔
4
1012015912233 2 4
10120150912119 4 1
10120150912126 1 3
1012015091202 3 2
2
3 4
10120150912002 2
10120150912119 1
#include <bits/stdc++.h> const int maxn = 1010; struct Student{ long long id;// 准考证号 int examSeat;// 考试座位号 }testSeat[maxn]; int main(int argc, char *argv[]) { int n, m, seat, examSeat; long long id; scanf("%d", &n) ;// 考生人数 for(int i = 0; i < n; i++) { scanf("%lld %d %d", &id, &seat, &examSeat);// 准考证号,试机座位号,考试座位号 testSeat[seat].id = id; testSeat[seat].examSeat = examSeat;// 试机座位号为seat的考生的考试号 } scanf("%d", &m);// 查询个数 for(int i = 0; i < m; i++) { scanf("%d", &seat); printf("%lld %d\n", testSeat[seat].id, testSeat[seat].examSeat); } return 0; }
标签:数字 char 个数 clu std scan const pre 座位号
原文地址:https://www.cnblogs.com/YC-L/p/12187576.html