解题思路:创建一个数组把前面需要替换的数组进行储存,数组整体后移之后再加到数组前面
注意事项:注意数组越界欸,一定要看清楚!!!
参考代码:import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();//n个数
int[] s = new int[n];//n个元素的数组
for (int i = 0; i < n; i++) {//输入数组
s[i] = sc.nextInt();
}
int m = sc.nextInt();//后移个数
Move_back(n, s, m);//调用后移函数
}
private static void Move_back(int n, int[] s, int m) {
int[] temp = new int[m];//缓存数组
for(int i = 0; i < m; i++){//储存替换的部分
temp[i] = s[n-m+i];
}
for(int j = n-1; j > m-1; j--){//后移数组
s[j] = s[j-m];
}
for(int k = 0; k < m; k++){/将缓存数组加到前面
s[k] = temp[k];
}
for(int i : s){//输出
System.out.print(i+" ");
}
}
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:596 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:690 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:1368 |
1054题解浏览:516 |
简单的a+b (C语言代码)浏览:1024 |
C二级辅导-求偶数和 (C语言代码)浏览:707 |
C二级辅导-公约公倍 (C语言代码)浏览:537 |
企业奖金发放 (C语言代码)浏览:2459 |
复数求和 (C语言代码)浏览:994 |