会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
smartlearn
博客园
首页
新随笔
新文章
联系
订阅
管理
2022年11月24日
C++ 继承和派生的应用 1.定义一个类 Book, 用来描述新书, 具有以下功能:(1) 查看当前价格. (2)查看当前的书号 2.定义一个类 SellBook, 用来表示促销的书籍, 要求继承自 Book 类 具有以下功能: 1. 查看当前折扣 2. 设置当前折扣 3. 查看当前的促销价格
摘要: Book.h: #pragma once #include <string> using namespace std; class Book { public: Book(const string& bookname, const string& isbn, double price); doubl
阅读全文
posted @ 2022-11-24 19:37 wshidaboss
阅读(69)
评论(0)
推荐(0)
编辑