Problem1009--【入门】数组逆序1009: 【入门】数组逆序
Time Limit: 1.000 Sec Memory Limit: 16 MB
Submit: 62 Solved: 54
[Submit] [Status] [Web Board] [Creator:][下载测试数据] Description
给你m个整数,将其逆序输出
Input
第一行一个整数m(3 <= m <= 100 ):数的个数 第二行m个整数(空格隔开)(这些数在0-9999999之间)
Output
m个整数(空格隔开)
Sample Input
3
1 7 5
Sample Output
5 7 1
Source/Category
[Submit] [Status]