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-4 可怕的素质.md

32 lines
820 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-4 可怕的素质
亚克星球上的人的素质跟我们福大人比起来,可以说是一个天上,一个地下了。他们去食堂吃饭的时候,很多人都不好好的排队,而是排在某个熟人的后面,或者直接就插到队伍的最前面。这让食堂的工作人员很是恼火。
### 输入格式:
第一行包含一个整数n0<n<1000,表示有n个亚克星球上的人去食堂吃饭
接下来n行每行1个整数x表示第i( i从1~n )个人排在了x的后面当x为0时表示第i个人排在了最前面
### 输出格式:
输出仅一行包括n个数以空格作为分隔符最后一个数的后面没有空格表示这n个人最后是排成了怎样的队伍
### 输入样例:
```in
3
0
0
2
```
### 输出样例:
```out
2 3 1
```