| class Rectangle { private: int width, height, area; public: Rectangle(int w=5, int h=10) { width = w; height = h; } void setRectangle(int w, int h) { width = w; height = h; } void calcArea() { area = width * height; } int getArea() { return area; } void print(); void isLarger(Rectangle *r); }; void Rectangle::print() { cout << "가로 : " << width << ", 세로 : " << height << ", 넓이 : " << area << endl; } void Rectangle::isLarger(Rectangle *r) { if(getArea() > r->getArea()) { cout << "내 사각형이 더 크다 " << endl; }else { cout << "님의 사각형이 더 크다 " << endl; } } void main() { Rectangle r1(10,20), r2(100,200); r1.calcArea(); r2.calcArea(); r1.isLarger(&r2); } |
조회 수 508 추천 수 0 댓글 0
-
Rectangle4
-
Rectangle3
-
Rectangle2
-
Rectangle
-
3-28
-
ex1
-
예제4(Ver.2)
-
예제4 5명의 평균 구하기
-
두 숫자 사이의 짝수 출력
-
각 자리의수 합 구하기 예제
-
ver3
-
원넓이 버전투
-
원의 넓이
-
특정 숫자 사이의 2,3의 배수 개수 구하기
-
카운터 프로그램 VER.2