3214: 数组逆序重存放(一本通1105)
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
将一个数组中的值按逆序重新存放。例如,原来的顺序为8,6,5,4,1。要求改为1,4,5,6,8。
Input
两行:第一行数组中元素的个数n(1<n<100),第二行是n个整数,每两个整数之间用空格分隔。
Output
输出逆序后数组的整数,每两个整数之间用空格分隔。
Sample Input Copy
5
8 6 5 4 1
Sample Output Copy
1 4 5 6 8