1255: C语言10.27

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

Description

将n个整数按输入时的顺序逆序排列,用函数实现。

Input

第一行有一个整数n,表示下一行有多少个整数,保证n不超过1000。第二行有n个用空格隔开的整数。

Output

输出按逆序排列的n个整数,每个整数后输出一个空格。
请注意行尾输出换行。

Sample Input Copy

5
1 2 3 5 8

Sample Output Copy

8 5 3 2 1 

Source/Category