摘要: 方法 package ok; public class point { int x; int y; public point(int x0,int y0) { this.x=x0; this.y=y0; } public void movepoint(int dx,int dy) { this.x+ 阅读全文
posted @ 2023-05-30 23:40 一瓶气泡水 阅读(21) 评论(0) 推荐(0)
摘要: 1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 package ffffff; public class op { public static void main(String[] args) { // TODO Auto-generated method stub test p=new  阅读全文
posted @ 2023-05-30 23:12 一瓶气泡水 阅读(14) 评论(0) 推荐(0)