求解c++定义一个 Book( 图书 ) 类,在该类定义中包括 数据成员:
定义一个Book(图书)类,在该类定义中包括数据成员:bookname(书名)、price(价格)和number(存书数量)。成员函数:display()显示图书的情况;...
定义一个 Book( 图书 ) 类,在该类定义中包括 数据成员: bookname( 书名 ) 、 price( 价格 ) 和 number( 存书数量 ) 。
成员函数 :display() 显示图书的情况; borrow() 将存书数量减 1 。并显示当前存书数量; restore() 将存书数量加 1 ,并显示当前存书数量。
在 main 函数中,要求建立某一种图书对象,并对该图书进行简单的显示、借阅和归还管理。 展开
成员函数 :display() 显示图书的情况; borrow() 将存书数量减 1 。并显示当前存书数量; restore() 将存书数量加 1 ,并显示当前存书数量。
在 main 函数中,要求建立某一种图书对象,并对该图书进行简单的显示、借阅和归还管理。 展开
1个回答
展开全部
#include <iostream>
using namespace std;
class Book
{
public:
char[50] bookname;
float price;
int number;
public:
void display()
{
cout << "书名:" << bookname << "\t价格:" << price << "\t数量:" << number << endl;
}
void borrow()
{
number--;
cout << "当前数量:" << number << endl;
}
void restore()
{
number++;
cout << "当前数量:" << number << endl;
}
} // end of class
int main()
{
Book mybook;
mybook.display();
mybook.borrow();
mybook.restore();
}
using namespace std;
class Book
{
public:
char[50] bookname;
float price;
int number;
public:
void display()
{
cout << "书名:" << bookname << "\t价格:" << price << "\t数量:" << number << endl;
}
void borrow()
{
number--;
cout << "当前数量:" << number << endl;
}
void restore()
{
number++;
cout << "当前数量:" << number << endl;
}
} // end of class
int main()
{
Book mybook;
mybook.display();
mybook.borrow();
mybook.restore();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询