power-girl0-0

[ C++ ] 클래스를 이용하여, 사각형 면적과 둘레 구하기 본문

언어/C++

[ C++ ] 클래스를 이용하여, 사각형 면적과 둘레 구하기

power-girl0-0 2021. 3. 23. 14:31
728x90
#include <iostream>
using namespace std;

class Rectangle{
public:
	int width;
	int height;
	int getArea();
	int getdul();
};

int Rectangle::getArea(){
	return width*height;
}

int Rectangle::getdul(){
	return (width*2)+(height*2);
}

int main(){
	Rectangle rect;
	rect.width =3;
	rect.height = 5;
	cout << "사각형의 면적은 "<<rect.getArea()<<endl;
	cout << "사각형의 둘레는 "<<rect.getdul()<<endl;
}

728x90
Comments