본문 바로가기
프로그램/C++ 1000제

C++ 121제] 어서와! C++은 처음이지! CHAPTER 10. PROGRAMMING EXERCISE 2. p433

by 건티 2024. 11. 18.
728x90

출처 : 반크_반크 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;
}

 

참고풀이 결과]

 

 

 

 

 

대한민국의 아름다운 영토, 독도

 

반응형

댓글