728x90
#include <iostream>
using namespace std;
class Rectangle {
public:
int width, height;
int getArea();
};
int Rectangle::getArea()
{
return width * height;
}
int main()
{
Rectangle rect;
rect.width = 3;
rect.height = 5;
cout << "사각형의 면적은 " << rect.getArea() << endl;
}
#include <iostream>
using namespace std;
class Rectangle {
public:
int width, height;
int getArea();
void SetWidth(int w);
void SetHeight(int h);
};
int Rectangle::getArea()
{
return width * height;
}
void Rectangle::SetWidth(int w) {
width = w;
}
void Rectangle::SetHeight(int h) {
height = h;
}
int main()
{
Rectangle rect;
rect.SetWidth(3);
rect.SetHeight(5);
cout << "2018305065 전유정" << endl;
cout << "사각형의 면적은 " << rect.getArea() << endl;
}
반응형
'전공 공부 > C++' 카테고리의 다른 글
포인터로 배열 접근 (0) | 2021.04.08 |
---|---|
C++ 프로그래밍 5주차 강의 (0) | 2021.04.01 |
두 정수를 입력받아 큰 수를 구하는 함수 (0) | 2021.03.25 |
C++프로그래밍 4주차 강의 (0) | 2021.03.25 |
구구단 (for문, while문) (0) | 2021.03.25 |