用JAVA写一个冒泡成程序
时间: 2023-03-14 11:43:33 浏览: 64
好的,这是用Java写的一个冒泡排序程序:
```
import java.util.Arrays;
public class BubbleSort {
public static void main(String[] args) {
int[] arr = {5, 4, 3, 2, 1};
bubbleSort(arr);
System.out.println(Arrays.toString(arr));
}
public static void bubbleSort(int[] arr) {
for (int i = 0; i < arr.length - 1; i++) {
for (int j = 0; j < arr.length - 1 - i; j++) {
if (arr[j] > arr[j + 1]) {
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
}
```
输出结果:
```
[1, 2, 3, 4, 5]
```
阅读全文