摘要: 原理 public class Test { public static void main(String args[]) { int a[]={5,7,4,3,7,4,3,2,7}; int t; for(int i=0;i<a.length-1;i++)//共进行a.length-1趟排序 { 阅读全文
posted @ 2020-07-24 16:11 木子欢儿 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 代码: public class Test { public static void main(String args[]) { int a[][]={{1,4,6,10},{3,5,8,14},{6,7,9,21}}; int b[][]=new int[4][3]; System.out.pri 阅读全文
posted @ 2020-07-24 15:49 木子欢儿 阅读(2966) 评论(0) 推荐(0) 编辑