• 목록
  • 아래로
  • 위로
  • 쓰기
  • 검색

C언어 Rectangle

레이나sv
449 0 0
#include<iostream>
using namespace std;

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 Rectangle::print()
{
        cout<<"가로 : "<< width << ",세로 : " << height << ",넓이" << area <<endl;
}

void main()
{
        Rectangle r;

        r.calcArea();
        r.print();
}
신고공유스크랩

댓글 0

댓글 쓰기
권한이 없습니다. 로그인
에디터 모드

신고

"님의 댓글"

이 댓글을 신고하시겠습니까?

댓글 삭제

"님의 댓글"

이 댓글을 삭제하시겠습니까?

공유

퍼머링크