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

C++ 118제] 어서와! C++은 처음이지! CHAPTER 09. PROGRAMMING EXERCISE 5. p395

by 건티 2024. 11. 11.
728x90

출처 : 반크_백제역사 유적지구와 이스탐블 역사지구

 

참고풀이]

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;

class Box {
private:
   double length;
   double width;
   double height;
   static int count;
public:
   Box(double l = 2.0, double w = 2.0, double h = 2.0) {
      length = l;
      width = w;
      height = h;
      count++;
   }
   double Volume() {
      return length * width * height;
   }
   void Print()
   {
      cout << "전체 객체 수 : " << count << endl;
   }
};
int Box::count = 0;

int main()
{
   Box b1(5.0);
   Box b2(5.0, 5.0, 10.0);

   b1.Print();

   return 0;
}

 

참고풀이 결과]

 

 

 

 

 

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

 

반응형

댓글