飒雨


私信TA

用户名:dotcpp0602180

访问量:185

签 名:

等  级
排  名 4238
经  验 1738
参赛次数 3
文章发表 2
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:
注意传传递的数据以及输入的个数

数组和想要移动的位数
注意事项:
移动的写法

for (j = b - c; j <b;j++)

参考代码:

#include <stdio.h>

int a[10001];

void move_number(int a[10001], int c,int b) {

int j;

for (j = b - c; j <b;j++) {

printf("%d ",a[j]);                 //要移动的放在前面

}

for (j = 0; j < b - c;j++) {

printf("%d ",a[j]);                //依次打印出剩余的

}

}


int main() {

int b,c;

scanf("%d",&b);

for (int i = 0; i < b;i++) {

scanf("%d",&a[i]);

}

scanf("%d",&c);

move_number(a,c,b);


return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »