码迷,mamicode.com
首页 > 其他好文 > 详细

B1041. 考试座位号

时间:2020-02-06 01:11:59      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:return   cout   inf   char   sts   定义   argc   结构体   考试   

技术图片

 

 

 技术图片

 

基本思路

  • 两个类型的座位号,试机座位号为a,考试座位号为b,先得到a再得到b
  • 准考证号为id
  • 定义一个学生结构体,将a设为下标,b和id作为该结构体的属性
#include <bits/stdc++.h>
using namespace std;
struct Student{
    long long id;// 准考证号 
    int examSeat;// 考试座位号 
}testSeat[1010];// 试机座位号 
int main(int argc, char *argv[]) {
    int N, n, m, examSeat, t;
    long long id;
    cin >> N;
    for(int i = 0; i < N; i++){
        cin >> id >> m >> examSeat;
        testSeat[m].id = id;
        testSeat[m].examSeat = examSeat;
    }
    cin >> n;
    for(int i = 0; i < n; i++){
        cin >> t;
        cout << testSeat[t].id <<   << testSeat[t].examSeat << endl;        
    }
    return 0;    
}

B1041. 考试座位号

标签:return   cout   inf   char   sts   定义   argc   结构体   考试   

原文地址:https://www.cnblogs.com/YC-L/p/12267450.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!