05 2021 档案

摘要:public class l { int x; int y; l() { } l(int x0, int y0) { this.x = x0; this.y = y0; } public void movePoint(int dx, int dy) { System.out.println("前坐标 阅读全文
posted @ 2021-05-25 10:47 假̶装̶乐̶观̶♡̶ 阅读(35) 评论(0) 推荐(0)
摘要: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 假̶装̶乐̶观̶♡̶ 阅读(55) 评论(0) 推荐(0)