?? test.cpp
字號:
#include "library.h"
using namespace jixia;
main()
{
char choice;
Library lib;
while(choice!='0')
{
cout <<endl<<endl<<"\t\t\t 圖 書 管 理 系 統(tǒng)\n\n\n";
cout <<"\t\t\t1 圖 書 信 息\n\n\t\t\t2 管 理 員 信 息 \n\n\t\t\t3 讀 者 信 息\n\n\t\t\t4 借 閱 信 息\n\n\t\t\t0 離 開"<<endl;
cin >> choice;
switch (choice)
{
case '1':
lib.Bookbase();
break;
case '2':
lib.Adminbase();
break;
case '3':
lib.Readerbase();
break;
case '4':
lib.Borrowbase();
break;
default:cout<<"歡迎再次光臨!"<<endl;
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -