05 2021 档案

摘要:public class point { int x; int y; public point(int x0, int y0) { super(); this.x = x0; this.y = y0; } public point() { super(); } public String moveP 阅读全文
posted @ 2021-05-23 17:44 丁朝明 阅读(60) 评论(0) 推荐(0)
摘要:1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 1 public void sor(int a[]){ 2 int mid=0; 3 for (int i = 0; i < a.length; i++) { 4 for (int j = 0; j < a.length-1; j++) { 阅读全文
posted @ 2021-05-09 08:29 丁朝明 阅读(60) 评论(0) 推荐(0)