1232: C语言10.4

Memory Limit:32 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:4 Solved:3

Description

输入n个整数,按相反顺序保存在数组中,并输出。

Input

第一行有一个整数n,第二行包含了n个用空格隔开的整数。输入保证n不超过100。

Output

输出按相反顺序保存在数组中的数,每个数之后输出一个空格。
请注意行尾输出换行。

Sample Input Copy

10
1 2 3 4 5 6 7 8 9 0

Sample Output Copy

0 9 8 7 6 5 4 3 2 1 

Source/Category