摘要: package work; public class Student { String name; double grade; public Student(){ } public Student(String name,double score){ this.name=name; this.gra 阅读全文
posted @ 2020-05-07 14:52 -Sehnsucht 阅读(123) 评论(0) 推荐(0) 编辑
摘要: package work; 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 dx,i 阅读全文
posted @ 2020-05-07 14:51 -Sehnsucht 阅读(123) 评论(0) 推荐(0) 编辑