摘要: 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)