圖書(shū)信息管理系統(tǒng)C++程序設(shè)計(jì)_第1頁(yè)
圖書(shū)信息管理系統(tǒng)C++程序設(shè)計(jì)_第2頁(yè)
圖書(shū)信息管理系統(tǒng)C++程序設(shè)計(jì)_第3頁(yè)
圖書(shū)信息管理系統(tǒng)C++程序設(shè)計(jì)_第4頁(yè)
圖書(shū)信息管理系統(tǒng)C++程序設(shè)計(jì)_第5頁(yè)
已閱讀5頁(yè),還剩5頁(yè)未讀 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、#include#include /控制臺(tái)數(shù)據(jù)輸入輸出的函數(shù)#include/文件流#include /控制數(shù)據(jù)輸出格式#includeconst int Maxb=100; /最多可存儲(chǔ)的圖書(shū)class Book /圖書(shū)類(lèi),實(shí)現(xiàn)對(duì)圖書(shū)的描述,圖書(shū)的編號(hào),書(shū)名等功能private: int tag; /刪除標(biāo)記 1:已刪 0:未刪int no; /登陸號(hào)char name20; /書(shū)名 char author20;/作者名char sno20;/分類(lèi)號(hào)char cbs20; /出版社int cbtime;/出版時(shí)間double bookprice;/圖書(shū)價(jià)格public: Book() /圖書(shū)

2、信息char *getname()/獲取書(shū)名 return name; char *getauthorname() /獲取作者名 return author; char *getsno()/獲取分類(lèi)號(hào)return sno;char *getcbsname()/獲取出版社名 return cbs; int getcbtime()/獲取出版時(shí)間return cbtime;double getbookprice()/獲取圖書(shū)價(jià)格return bookprice;int getno()/獲取登錄號(hào) return no; int gettag()/獲取刪除標(biāo)記 return tag; /設(shè)置void s

3、etname(char na) /設(shè)置書(shū)名 strcpy(name,na); void setauthorname(char aa)/設(shè)置作者名strcpy(author,aa);void setsno(char sa)/設(shè)置分類(lèi)號(hào)strcpy(sno,sa);void setcbs(char ca)/設(shè)置出版社strcpy(cbs,ca);void setcbtime(int time) /設(shè)置時(shí)間 cbtime=time; void setbookprice(double price)/設(shè)置圖書(shū)價(jià)格 bookprice=price;void delbook() /刪除圖書(shū)char i;co

4、ut確定刪除嗎?Y/N ?i;if(i=y|i=Y) tag=1; void addbook(int n,char *na,char *aa,char *sa,char *ca,int time,double price) /增加圖書(shū) tag=0; no=n; strcpy(name,na); strcpy(author,aa); strcpy(sno,sa); strcpy(cbs,ca); cbtime=time; bookprice=price; void disp() /輸出圖書(shū) coutsetw(6)nosetw(10)namesetw(10)authorsetw(10)snoset

5、w(10)cbssetw(15)cbtimesetw(15)bookpriceendl; ;class BDatabase /圖書(shū)庫(kù)類(lèi),實(shí)現(xiàn)對(duì)圖書(shū)的維護(hù),查找,刪除等 private: int top; /圖書(shū)記錄指針Book bookMaxb; /圖書(shū)記錄public: BDatabase() /構(gòu)造函數(shù),將book.txt讀到book中 Book b; top=-1; fstream file(book.txt,ios:in); while (1) file.read(char *)&b,sizeof(b); if (!file) break; top+; booktop=b; file.

6、close(); void clear() /全刪 char i;cout確定全部刪除嗎?Y/N ?i;if(i=y|i=Y) top=-1; int addbook(int n,char *na,char *aa,char *sa,char *ca,int time, double price) /增加圖書(shū) Book *p=query1(n); if (NULL=p) top+; booktop.addbook(n,na,aa,sa,ca,time,price); return 1; return 0; Book *query1(int bookid) /按登陸號(hào)查找圖書(shū) for(int i

7、=0;i=top;i+) if(booki.getno()=bookid &booki.gettag()=0) return &booki; return NULL; Book *query2(char a) /按書(shū)名查找圖書(shū) Book *e; int r=0; for(int i=0;i=top;i+) if(strcmp(booki.getname(),a)=0 &booki.gettag()=0) if(r=0) coutsetw(6)編號(hào)setw(10)書(shū)名setw(10)作者setw(10)分類(lèi)號(hào)setw(10)出版社setw(15)出版時(shí)間setw(15)圖書(shū)價(jià)格disp(); r

8、+; if(r=0) cout找不到該書(shū)!endl; return NULL; Book *query3(char a) /按作者查找圖書(shū) Book *e; int r=0; for(int i=0;i=top;i+) if(strcmp(booki.getauthorname(),a)=0 &booki.gettag()=0) if(r=0) coutsetw(6)編號(hào)setw(10)書(shū)名setw(10)作者setw(10)出版社setw(15)出版時(shí)間setw(15)圖書(shū)價(jià)格disp(); r+; if(r=0) cout找不到該書(shū)!endl; return NULL; void book

9、data(); /圖書(shū)庫(kù)信息void disp() for(int i=0;i=top;i+) if(booki.gettag()=0) booki.disp(); BDatabase() /析構(gòu)函數(shù),將book寫(xiě)到book.txt文件中 fstream file(book.txt,ios:out); for(int i=0;i=top;i+) if(booki.gettag()=0) file.write(char *)&booki,sizeof(booki); file.close(); ; void BDatabase:bookdata() char choice1; char bnam

10、e40;/書(shū)名char auname40;/作者名char sno40;/分類(lèi)號(hào)char cname40;/出版社int time;/出版時(shí)間double price;/價(jià)格char ch;int choice2;int bookid;Book *b; while (choice1!=0) coutnttt* 圖 書(shū) 信 息 *nendl; coutttt* 1.新增圖書(shū)信息 *endl; coutttt* 2.更改圖書(shū)信息 *endl; coutttt* 3.刪除圖書(shū)信息 *endl; coutttt* 4.查找圖書(shū)信息*endl; coutttt* 5.顯示圖書(shū)信息 *endl; cout

11、ttt* 6.全刪圖書(shū)信息 *endl; coutttt* 0.返 回 *endl; coutchoice1; switch(choice1) case 1: coutbookid; b=query1(bookid); if(b!=NULL) cout該編號(hào)已經(jīng)存在,不能添加!endl; break; coutbname; coutauname; coutcname;coutsno;couttime;coutprice; addbook(bookid,bname,auname,sno,cname,time,price); cout添加圖書(shū)成功!; getch(); break; case 2:

12、 coutbookid; b=query1(bookid); if(b=NULL) cout該圖書(shū)不存在! endl; break; cout該圖書(shū)的信息是:endl; coutsetw(6)編號(hào)setw(10)書(shū)名setw(10)作者setw(10)分類(lèi)號(hào)setw(10)出版社setw(15)出版時(shí)間setw(15)圖書(shū)價(jià)格disp(); coutch; if(ch=y|ch=Y) int a;coutnttt* 圖 書(shū) 修 改 *nendl; coutttt* 1.修 改 書(shū) 名 *endl; coutttt* 2.修 改 作 者 *endl; coutttt* 3.修 改 分類(lèi)號(hào) *en

13、dl; coutttt* 3.修 改 出 版 社 *endl; coutttt* 4.修 改 出 版 時(shí) 間*endl; coutttt* 5.修 改 圖 書(shū) 價(jià) 格*endl; coutttt* 0.返 回 *endl; couta; switch(a)case 1: coutbname; b-setname(bname); break;case 2: coutauname; b-setauthorname(auname); break;case 3:cinsno;b-setsno(sno);break;case 4: coutcname; b-setcbs(cname); break;ca

14、se 5: couttime;b-setcbtime(time); break;case 6: coutprice; b-setbookprice(price); break;case 0: break; cout修改圖書(shū)成功!; getch(); break; case 3: coutbookid; b=query1(bookid); if(b=NULL) cout該圖書(shū)不存在,無(wú)法刪除!delbook(); cout刪除成功!; getch(); break; case 4: coutttt* 1.按圖書(shū)登錄號(hào)查找 *endl; coutttt* 2.按圖書(shū)書(shū)名查找 *endl; cout

15、ttt* 3.按圖書(shū)作者查找 *endl; coutttt* 0. 返 回 *endl; coutchoice2; switch(choice2) case 1: coutbookid; b=query1(bookid); if(b=NULL) cout該圖書(shū)不存在!; break; coutsetw(6)編號(hào)setw(10)書(shū)名setw(10)作者setw(10)分類(lèi)號(hào)setw(10)出版社setw(15)出版時(shí)間setw(15)圖書(shū)價(jià)格disp(); break; case 2: coutbname; b=query2(bname); break; case 3: coutauname;

16、b=query3(auname); break; case 0: break; break; case 5: coutsetw(6)編號(hào)setw(10)書(shū)名setw(10)作者setw(10)分類(lèi)號(hào)setw(10)出版社setw(15)出版時(shí)間setw(15)圖書(shū)價(jià)格endl; disp(); getch(); break; case 6: clear(); break; case0:break; default: cout輸入錯(cuò)誤,請(qǐng)從新輸入(數(shù)字為06):; break; /main() 函數(shù)的實(shí)現(xiàn),程序的主界面的引導(dǎo)void main() char choice3; BDatabase BookDB; while

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論