摘要: 1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 private static void mp() { int a[]={5,6,8,2,3,4,9,1}; for(int i=0;i<a.length-1;i++){ for (int j = 0; j < a.length-i-1; j+ 阅读全文
posted @ 2021-05-12 11:33 假̶装̶乐̶观̶♡̶ 阅读(44) 评论(0) 推荐(0)