[5~8] 다음은 2차원 상의 한 점을 표현하는 point 클래스이다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 class Point{ private int x,y; public Point(int x, int y) { this.x = x; this.y = y; } public int getx() { return x; } public int gety() { return y; } protected void move(int x, int y) { this.x = x; this.y = y; } } Colored by Color Scripter cs 5. point를 상속받아 색을 가진 점을 나타내는 ColorPoint 클래스를 작성하라. 다음 main()메소드를 포함하..