数组元素的移动
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
题目描述
数组元素的移动,把数组的第 个位置的元素先保存起来,然后把 到 的元素,依次往前移一位,最后原来的第 个位置的元素放在最后。
输入格式
有 行
第一行有一个整数
第二行有 个整数
第三行有一个整数
输出格式
移动后的数组
8
1 2 3 4 5 6 7 8
1
2 3 4 5 6 7 8 1