2327: 数组元素平移

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:58 Solved:19

Description

A数组存放10个自然数,将A数组中第一个元素移到数组末尾,其余数据依次往前平移一个位置。

Input

输入10个整数

Output

十个自然数,占四位场宽

Sample Input Copy

1 2 3 4 5 6 7 8 9 10

Sample Output Copy

   2   3   4   5   6   7   8   9  10   1

Source/Category