Problem C: 【一维数组】【入门】倒序问题

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:506 Solved:257

Description

输入5个数,要求程序按输入时的逆序把这5个数打印出来(也就是,按输入相反顺序打印这5个数)

Input

输入5个整数

Output

将5个数倒序输出

Sample Input Copy

3 6 4 10 5

Sample Output Copy

5 10 4 6 3