/* https://ehpub.co.kr C++ 예제 - 언제나 휴일 상속 실습 - 상품과 할인 상품 클래스 정의하기 */ #include #include using namespace std; class Product { string name; int price; public: Product(string name, int price) { SetName(name); SetPrice(price); } virtual int GetPrice()const { return price; } string GetName()const { return name; } virtual void Print()const { cout