1269: 数据移动
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:41
Solved:27
Description
将a数组的第一个元素移动最后,其余的数据依次往前平移一个位置。
Input
一行,n个整数,中间用空格分开
Output
移动后的结果。一行显示。
Sample Input Copy
1 3 5 7 9
Sample Output Copy
3 5 7 9 1