display.h

来自「1. 系统概述: 图书馆管理系统是运行于Windows系统下的应用软件」· C头文件 代码 · 共 19 行

H
19
字号
#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 + =
减小字号Ctrl + -
显示快捷键?