1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00
202401-programming-assignments/【实践课外】16.结构体2/7-5 找出同龄者.md

33 lines
794 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 7-5 找出同龄者
最近,小明开始班级大搜索,他已经知道了班级里每个人的年龄,并且把他们排成了一队,他将从排好队的人里按顺序把和自己同龄的人找出来,并请这些同龄人出队。
### 输入格式:
第一行输入一个N0<n<100表示有N个学生
接下来有N行每行两个数据分别表示某个同学的名字和年龄
最后一行包含一个整数表示小明的年龄
### 输出格式:
输出仅一行包含若干学生的姓名姓名与姓名之间用空格分隔最后一个名字的末尾没有空格表示小明的同龄者出队后队伍中学生的排序
### 输入样例:
```in
3
张三 20
李四 22
王五 15
22
```
### 输出样例:
```out
张三 王五
```