摘要: 1. package LH; public class Point { int x; int y; Point() { } Point(int x0, int y0) { this.x = x0; this.y= y0; } void movePoint(int dx,int dy) { this. 阅读全文
posted @ 2020-04-30 14:47 计算机1804梁浩 阅读(108) 评论(0) 推荐(0) 编辑