05 2021 档案

摘要:package com.homework08; public class Point { public int x; public int y; public Point() { x = 0; y = 0; } public Point(int x0, int y0) { x = x0; y = y 阅读全文
posted @ 2021-05-26 13:52 SuoJing 阅读(36) 评论(0) 推荐(0)
摘要:package com.homework07; public class MyClass { public int[] sort(int[] array) { int t; for (int n = 0; n < array.length; n++) { for (int m = n; m < ar 阅读全文
posted @ 2021-05-10 20:01 SuoJing 阅读(77) 评论(0) 推荐(0)