05 2021 档案

摘要:1. package java10; public class Point { int x; int y; public Point(){ } public Point(int x0,int y0){ this.x=x0; this.y=y0; } public void movePoint(int 阅读全文
posted @ 2021-05-24 16:57 jth12 阅读(34) 评论(0) 推荐(0) 编辑
摘要:1.编写个方法,实现冒泡排序,并调用该方法(从小到大) package bse; public class j1 { /** * @param args */ public static void mp(int a[]) { // TODO Auto-generated method stub fo 阅读全文
posted @ 2021-05-10 19:55 jth12 阅读(52) 评论(0) 推荐(0) 编辑