📄 display.h
字号:
#include"iostream"
using namespace std;
//#include"stack_book"
void dispay()
{
cout<<"book name:"<<setw(60)<<sName;
cout<<" ID:"<<setw(80)<<iID; //输出书名和ID
cout<<"author:"<<setw(30)<<sAuthor;
cout<<" price:"<<setw(45)<<fPrice;
cout<<" exist:"<<setw(50)<<bExist<<endl; //作者,书价,是否借出
cout<<"publishing company:"<<setw(40)<<sPubCom;
cout<<" publishing time:"<<setw(70)<<endl; //出版社和出版时间
}
void main()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -