[C++]명품 C++ 프로그래밍 실습문제 7장 4번 [C++]명품 C++ programming 실습문제 7장 4번 명품 C++ 프로그래밍실습문제/연습문제 /C++ #include #include #include using namespace std; class Book{ string title; int price,pages; public: Book(string title="",int price =0, int pages=0){ //매개생성자 this->title =title; this->price =price; this->pages =pages; } void show(){ cout