1026: C语言-逆序输出
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:389
Solved:119
Description
输入10个数字,然后逆序输出。
Input
十个整数
Output
逆序输出,空格分开
Sample Input Copy
1 2 3 4 5 6 7 8 9 0
Sample Output Copy
0 9 8 7 6 5 4 3 2 1
HINT
数组?堆栈?