반응형 클래스2 Chapter 13. Abstract Classes and Interfaces[Java Basic] 13.A - 비교가능한 GeometricObject Time Limit: 1s Memory Limit: 128MB DESCRIPTION GeometricObject를 비교할 수 있도록 Comparable 인터페이스를 구현하고, 주어진 두 개의 GeometricObject 객체 중 더 큰 객체를 반환하는 정적 메소드 max 를 정의하시오. (Enable GeometricObject comparable) Modify the GeometricObject class to implement the Comparable interface, and define a static max method in the GeometricObject class for finding the larger of two GeometricO.. 2021. 11. 6. Chapter 9. Objects and Classes[Java Basic] 9.A - Rectangle 클래스 Time Limit: 1s Memory Limit: 128MB DESCRIPTION 다음 특징을 가지는 Rectangle 클래스를 만들기 바랍니다. double 형의 width와 height를 필드로 가진다. 인자가 없는 생성자와 width와 height를 인자로 가지는 생성자를 가진다. getArea() 메소드는 사각형의 넓이를 리턴한다. getPerimeter() 메소드는 사각형의 둘레를 리턴한다. 여러분이 작성한 코드는 아래 샘플코드의 YOUR_CODE 부분에 들어가 컴파일 됩니다. (The Rectangle class) Following the example of the Circle class in Section 9.2, design a class named R.. 2021. 11. 6. 이전 1 다음 반응형