~cpp public Circle(int xValue, int yValue, int width, int height) { middlePoint = new Point(xValue, yValue); this.width = width; this.height = height; } public Circle(int xValue, int yValue, int r){ middlePoint = new Point(xValue, yValue); this.width = r; this.height = r; }
창재 & 수민 Pair | JavaStudy2003.zip |