[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;
}
'C++' 카테고리의 다른 글
[C++] 명품 C++ 프로그래밍 실습문제 7장 5번 (0) | 2023.01.11 |
---|---|
[C++] 명품 C++ 프로그래밍 실습문제 7장 4번 (0) | 2023.01.11 |
[C++] 명품 C++ 프로그래밍 실습문제 7장 2번 (0) | 2023.01.11 |
[C++] 명품 C++ 프로그래밍 실습문제 7장 1번 (0) | 2023.01.11 |
[C++] 명품 C++ 프로그래밍 실습문제 7장 오픈챌린지/openchallenge (0) | 2023.01.11 |