login.cpp

来自「C++语言课程设计- 图书管理系统 我个人在大一时做的 不足之处还请赐教」· C++ 代码 · 共 31 行

CPP
31
字号
//*******************************
//			登陆首页
//*******************************
#include<iostream.h>
#include<windows.h>

void login()
{
	system("cls");
	cout<<"\n\t\t     ==============================="<<endl;
	cout<<"\t\t     ☆     图书管理系统<Beta2>   ☆        "<<endl;
	cout<<"\t\t     ==============================="<<endl;
	cout<<"--------------------------------------------------------------------------------";
	cout<<"\t\t     智  周  万  物\n\t\t\t\t      道  济  天  下"<<endl;
	cout<<"--------------------------------------------------------------------------------"<<endl;
	cout<<"功能简介:"<<endl;
	cout<<"\t\t该系统已具备图书管理与图书销售所需的一些基本功能"<<endl;
	cout<<"\t 包 括  ◆收银模块,即前台图书销售业务管理与销售记录"<<endl
		<<"\t        ◆书库管理模块,具有查找、添加、修改、删除等功能"<<endl
		<<"\t        ◆报表模块,用户可以以不同方式来浏览书库的信息"<<endl<<endl;
	cout<<"\t 建 议 若是首次使用该软件,建议用户先进入报表模块,在进行试用!"<<endl<<endl;
	cout<<"--------------------------------------------------------------------------------";
	cout<<"\t\t编者水平有限,错误和不妥之处在所难免,望用户指正!"<<endl;
	cout<<"--------------------------------------------------------------------------------";
	cout<<"\t\t\t\t版权所有!			"<<endl;
	cout<<"\t\t联系方式: zhenghongyuan@nuaa.edu.cn"<<endl;
	cout<<"\t\t\t  nuaays@gmail.com	  nase@163.com"<<endl;
	cout<<"--------------------------------------------------------------------------------"<<endl;
	system("pause");

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?