摘要: 1. package java10; public class Point { int x; int y; public Point(){ } public Point(int x0,int y0){ this.x=x0; this.y=y0; } public void movePoint(int 阅读全文
posted @ 2021-05-24 16:57 jth12 阅读(34) 评论(0) 推荐(0) 编辑