当前位置: > C++(定义一个Book(图书)类)...
题目
C++(定义一个Book(图书)类)
定义一个Book(图书)类,在该类定义中包括
数据成员: bookname(书名)、price(价格)和number(存书数量);
成员函数: display()显示图书的情况;borrow()将存书数量减1,并显示当前存书数量;restore()将存书数量加1,并显示当前存书数量.
在main函数中,要求创建某一种图书对象,并对该图书进行简单的显示、借阅和归还管理.

提问时间:2020-12-04

答案
测试通过(编译器为gcc-3.4.5):
#include
#include
int main(){
class Book{
public:
long number;
float price;
char *bookname;
void display(){
printf("The name of this book is:%s ",bookname);
printf("The price of this book is:%f
dolars ",price);
printf("The number of such book is:%d ",number);
}
void restore(){
number++;
}
void borrow(){
number--;
}
};
Book b;
b.bookname="Harry Potter";
b.price=18.00;
b.number=100;
b.display();
b.borrow();
b.display();
b.restore();
b.display();
system("pause");
return 0;
}
举一反三
已知函数f(x)=x,g(x)=alnx,a∈R.若曲线y=f(x)与曲线y=g(x)相交,且在交点处有相同的切线,求a的值和该切线方程.
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
版权所有 CopyRight © 2012-2019 超级试练试题库 All Rights Reserved.