public class array05 {
public static void main(String[] args) {
//建立一个数组
int[] a = {123, 345, 323, 678, 13, 78};
int[] sort = sort(a);
System.out.println(Arrays.toString(sort));
}
public static int[] sort(int[] array) {
int temp = 0;
for (int i = 0; i < array.length - 1; i++) {
for (int j = 0; j < array.length - 1 - i; j++) {
if (array[j + 1] < array[j]) {
temp = array[j+1];
array[j+1] = array[j ];
array[j ] = temp;
}
}
}
return array;
}
}
原文:https://www.cnblogs.com/hxh123456789/p/15094834.html