数组逆序重放
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
描述
将一个数组中的值按逆序重新存放。例如,原来的顺序为8,6,5,4,1。要求改为1,4,5,6,8。输入输入为两行:第一行数组中元素的个数n(1<n<100),第二行是n个整数,每两个整数之间用空格分隔。
输出
输出为一行:输出逆序后数组的整数,每两个整数之间用空格分隔。
样例输入
5
8 6 5 4 1
样例输出
1 4 5 6 8
专项练习之数组
- Status
- Done
- Rule
- ACM/ICPC
- Problem
- 10
- Start at
- 2023-8-3 9:30
- End at
- 2023-8-20 1:30
- Duration
- 400 hour(s)
- Host
- Partic.
- 11