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
阅读全文
摘要: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++) {
阅读全文

浙公网安备 33010602011771号