출처 : 반크_반크 20년 백서
참고풀이]
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
class Box {
private:
double length;
double width;
double height;
public:
Box(int l = 0, int w = 0, int h = 0) :length(l), width(w), height(h) {}
double getVolume(void)
{
return length * width * height;
}
void Print();
bool operator== (Box& box2)
{
return (length == box2.length &&
width == box2.width &&
height == box2.height);
}
};
void Box::Print()
{
cout << "상자의 길이 : " << length << endl;
cout << "상자의 너비 : " << width << endl;
cout << "상자의 높이 : " << height << endl;
cout << "상자의 부피 : " << getVolume() << endl;
}
int main()
{
Box a(10, 10, 10), b(20, 20, 20);
cout << "상자 #1\n"; a.Print(); cout << endl;
cout << "상자 #2\n"; b.Print(); cout << endl;
//참과 거짓을 1, 0이 아니라 true, false로 출력하도록 설정한다.
cout.setf(cout.boolalpha);
cout << (a==b);
return 0;
}
참고풀이 결과]
대한민국의 아름다운 영토, 독도
댓글