1189: 1.2 数组数据逆置
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:296
Solved:120
Description
输入n个数据,然后把数据逆置。
Input
第一行:输入数据个数n
第二行:输入n个数据。
第二行:输入n个数据。
Output
第一行:输出逆置前的数据。
第二行:输出逆置后的数据。
Sample Input Copy
5
1 2 3 4 5
Sample Output Copy
1 2 3 4 5
5 4 3 2 1