摘要:
package Cola; public class ColaEmployee { protected String name; protected int month; private int birthday; public String getName() { return name; } p 阅读全文
摘要:
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 阅读全文