Codeup 查詢學生資訊

2021-10-02 11:27:33 字數 1388 閱讀 4869

輸入n個學生的資訊,然後進行查詢。

輸入的第一行為n,即學生的個數(n<=1000)

接下來的n行包括n個學生的資訊,資訊格式如下:

01 李江 男 21

02 劉唐 男 23

03 張軍 男 19

04 王娜 女 19

然後輸入乙個m(m<=10000),接下來會有m行,代表m次查詢,每行輸入乙個學號,格式如下:

0203

0104

輸出m行,每行包括乙個對應於查詢的學生的資訊。

如果沒有對應的學生資訊,則輸出「no answer!」

5001 張三 男 19

002 李四 男 20

003 王五 男 18

004 趙六 女 17

005 劉七 女 21

7003

002005

004003

001006

003 王五 男 18

002 李四 男 20

005 劉七 女 21

004 趙六 女 17

003 王五 男 18

001 張三 男 19

no answer!

#include

#include

const

int maxn=

1000

;struct studentstu[maxn]

;int

main()

char num1[

100]

;int m;

int i;

scanf

("%d"

,&m)

;while

(m--)}

if(i==n)

printf

("no answer!\n");

}}return0;

}

#include

int maxsize=

1003

;typedef

struct

studentinfo;

intmain()

scanf

("%d"

,&m)

;for

(i=0

; i++i)}if

(j==n)

printf

("no answer!\n");

}}return0;

}#include

struct stu

stu[

1000];

intmain()

}if(i==n)

puts

("no answer!");

}}return0;

}

codeup 查詢學生資訊

輸入n個學生的資訊,然後進行查詢。輸入的第一行為n,即學生的個數 n 1000 接下來的n行包括n個學生的資訊,資訊格式如下 01 李江 男 21 02 劉唐 男 23 03 張軍 男 19 04 王娜 女 19 然後輸入乙個m m 10000 接下來會有m行,代表m次查詢,每行輸入乙個學號,格式如...

查詢學生資訊

題目描述 輸入n個學生的資訊,然後進行查詢。輸入 輸入的第一行為n,即學生的個數 n 1000 接下來的n行包括n個學生的資訊,資訊格式如下 01 李江 男 21 02 劉唐 男 23 03 張軍 男 19 04 王娜 女 19 然後輸入乙個m m 10000 接下來會有m行,代表m次查詢,每行輸入...

查詢學生資訊

二分查詢 題目描述 輸入n個學生的資訊,然後進行查詢。輸入 輸入的第一行為n,即學生的個數 n 1000 接下來的n行包括n個學生的資訊,資訊格式如下 01 李江 男 21 02 劉唐 男 23 03 張軍 男 19 04 王娜 女 19 然後輸入乙個m m 10000 接下來會有m行,代表m次查詢...