05 2021 档案
摘要:package java11; public class Point { int x; int y; public Point(int x0,int y0){ super(); this.x=x0; this.y=y0; } public Point(){ super(); } public Str
阅读全文
摘要:1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 package java10; public class MyMethod { // 编写一个方法,实现冒泡排序(由小到大),并调用该方法 public static void px(int []a){ for (int i = 0; i <
阅读全文