摘要: //编写一个方法,实现冒泡排序(由小到大),并调用该方法 public class Test1 { public static void paixu(int[] a) { for (int i = 0; i < a.length - 1; i++) { for (int j = 0; j < a.l 阅读全文
posted @ 2021-05-10 22:49 樽梦 阅读(46) 评论(0) 推荐(0)