摘要:
package week12; public class Point { int x; int y; public Point(int x0,int y0) { super(); this.x=x0; this.y=y0; } public Point() { super(); } public S 阅读全文
摘要:
1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 1 import java.util.Scanner; 2 3 public class zuoye { 4 public static void mppx(int []x) { 5 for (int i = 0; i < x.length; 阅读全文