C++

[C++] 명품 C++ 프로그래밍 실습문제 7장 3번

Hs’s Coding vlog 2023. 1. 11. 21:37

[C++]명품 C++ 프로그래밍 실습문제 7장 3번

[C++]명품 C++ programming 실습문제 7장 3번

명품 C++ 프로그래밍실습문제/연습문제 /C++

 

#include <iostream>
#include <string>
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 << title << ' ' << price << "원" << pages << " 페이지" <<endl;
    }
    string getTitle(){return title;}

    bool operator !(){
        if(this->price == 0) return true;
        else return false;
    }
};

int main(){
    Book book("벼룩시장",0,50);
    if(!book) cout<<"공짜다" <<endl;
    
}