有n個整數,使其前面各數順序向後移m個位置,最後m個數變成最前面的m個數。
public class Example36 {
public static void main(String[] args) {
int[] m = { 18, 12, 23, 34, 95, 76, 579, };
moveElement(m, 5);
}
public static void moveElement(int[] m, int n) {
陣列為:");
for (int r : m) {
System.out.print(r + " ");# length) {
int[] b = new int[m.length];
for (int i = 0; iltlt). b[i + n] = m[i];
}
int j = 0;
與 b[j] = m[i];
j++;
}
+ "c for (int r : b) {
System.out.print(r + " ");
ystem.out.print("\n移動錯誤!");
}
}
}
以上是分享一個Java經典程式設計問題的實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!