12黑马币
最佳答案class Noname2
{
public static void main(String[] args)
{
int[] arr = {1,5,9,8,4,3,7};
System.out.print("冒泡排序前:");
printArray(arr);
bubbleSort(arr);
System.out.print("冒泡排序后:");
printArray(arr);
}
public static void bubbleSort(int[] arr){
for (int i=0; i
| |
| |
| |
| |
| |