조회 수 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;


    }

List of Articles
번호 분류 제목
22 C언어 예제4(Ver.2) 1 file
21 C언어 ex1 1
20 C언어 3-28 file
19 C언어 Rectangle
18 C언어 Rectangle2
17 C언어 Rectangle3
16 C언어 Rectangle4
» C언어 Rectangle 객체배열 2
14 C언어 동적메모리
13 C언어 BMI
12 C언어 예제1
11 C언어 Chicken 클래스
10 C언어 Animal 클래스
9 C언어 도형의 상속구조
8 C언어 가상함수(Shape 클래스)
Board Pagination Prev 1 2 3 4 5 Next
/ 5