[C++]명품 C++ 프로그래밍 실습문제 9장 5번 [C++]명품 C++ programming 실습문제 9장 5번 명품 C++ 프로그래밍실습문제/연습문제 /C++ #include #include using namespace std; class AbstractGate { protected: bool x,y; public: void set(bool x, bool y){this->x =x; this->y=y;} virtual bool operation()=0; }; class ANDGate :public AbstractGate{ public: bool operation(){ return x&y; } }; class XORGate :public AbstractGate{ public: bool operation(..