1. 程式人生 > >1041 考試座位號

1041 考試座位號

每個 PAT 考生在參加考試時都會被分配兩個座位號,一個是試機座位,一個是考試座位。正常情況下,考生在入場時先得到試機座位號碼,入座進入試機狀態後,系統會顯示該考生的考試座位號碼,考試時考生需要換到考試座位就座。但有些考生遲到了,試機已經結束,他們只能拿著領到的試機座位號碼求助於你,從後臺查出他們的考試座位號碼。

輸入格式:

輸入第一行給出一個正整數 N(≤1000),隨後 N 行,每行給出一個考生的資訊:准考證號 試機座位號 考試座位號。其中准考證號由 14 位數字組成,座位從 1 到 N 編號。輸入保證每個人的准考證號都不同,並且任何時候都不會把兩個人分配到同一個座位上。

考生資訊之後,給出一個正整數 M(≤N),隨後一行中給出 M 個待查詢的試機座位號碼,以空格分隔。

輸出格式:

對應每個需要查詢的試機座位號碼,在一行中輸出對應考生的准考證號和考試座位號碼,中間用 1 個空格分隔。

輸入樣例:

4
10120150912233 2 4
10120150912119 4 1
10120150912126 1 3
10120150912002 3 2
2
3 4

輸出樣例:

10120150912002 2
10120150912119 1

 程式碼:

//第一種方法,練習結構體型別作為函式引數
#include <stdio.h>
struct test{
	char id[14];
	int tryId;
	int testId;
};
void query(struct test student[],int n,int seat);
int main(){
	int n;
	scanf("%d",&n);
	struct test student[n];
	for(int i=0;i<n;i++){
		scanf("%s %d %d",&student[i].id,&student[i].tryId,&student[i].testId);
	}
	int m;
	scanf("%d",&m);
	int num[m];
	for(int i=0;i<m;i++){
		scanf("%d",&num[i]);
	}
	for(int i=0;i<m;i++){
		query(student,n,num[i]);
	}
	return 0;
}
void query(struct test student[],int n,int seat){
	for(int i=0;i<n;i++){
		if(student[i].tryId==seat){
				printf("%s %d\n",student[i].id,student[i].testId);
		}
	}
}



//另外一種方法,大同小異
#include <stdio.h>
struct test{
	char id[14];
	int tryId;
	int testId;
};
int main(){
	int n;
	scanf("%d",&n);
	struct test student[n];
	for(int i=0;i<n;i++){
		scanf("%s %d %d",&student[i].id,&student[i].tryId,&student[i].testId);
	}
	int m;
	scanf("%d",&m);
	int num[m];
	for(int i=0;i<m;i++){
		scanf("%d",&num[i]);
		for(int j=0;j<n;j++){
			if(student[j].tryId==num[i]){
				printf("%s %d\n",student[j].id,student[j].testId);
			}
		}
	}
	return 0;
}

 過程總結:     1、首先想到用結構體來解決這道題      2、函式的宣告要放在結構體定義的下面 ,因為函式中有用到結構體型別,否則會說函式引數中的陣列型別不明確      void query(struct test student[],int n,int seat);     3、定義結構體陣列     struct test student[n];     4、C語言中,字元陣列的輸入可以直接用%s      5、輸入的時候一定不要忘記&符號      6、    for(int i=0;i<m;i++){         scanf("%d",&num[i]);     }      換行和空格都可以用來讀取