조회 수 605 추천 수 0 댓글 2
?

단축키

Prev이전 문서

Next다음 문서

이전 다음 위로 아래로 댓글로 가기 인쇄 목록
?

단축키

Prev이전 문서

Next다음 문서

이전 다음 위로 아래로 댓글로 가기 인쇄 목록
Extra Form
  • profile
    너에게제공 2013.04.02 16:24
    void main()
    {
    Rectangle *rp = new Rectangle;
    rp->setRectangle(10,20);
    rp->calcArea();
    rp->print();
    delete rp;
    }
  • profile
    너에게제공 2013.04.04 11:38
    void main(){
    int m,a,b;
    cout<<"사각형의 갯수?";
    cin>>m;
    Rectangle *r=new Rectangle[m];
    for(int i=0;i<m;i++)
    {
    cout<<"가로 : ";
    cin>>a;

    cout<<"세로 :";
    cin>>b;
    r->setRectangle(a,b);
    r->calcArea();
    r->print();
    (r+1);

    }


    delete r;


    }