摘要: 1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 1 package G1; 2 3 public class G1 { 4 public static void maopao(int[] x) { 5 for (int i = x.length - 1; i > 0; i--) { 6 f 阅读全文
posted @ 2021-05-12 17:52 计算机1905geng 阅读(93) 评论(0) 推荐(0) 编辑