c++圖書(shū)管理系統(tǒng)完整精華排版_第1頁(yè)
c++圖書(shū)管理系統(tǒng)完整精華排版_第2頁(yè)
c++圖書(shū)管理系統(tǒng)完整精華排版_第3頁(yè)
c++圖書(shū)管理系統(tǒng)完整精華排版_第4頁(yè)
c++圖書(shū)管理系統(tǒng)完整精華排版_第5頁(yè)
已閱讀5頁(yè),還剩9頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

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

文檔簡(jiǎn)介

1、/圖書(shū)管理系統(tǒng)#include#include#include#includeusingnamespacestd;constintMaxb=10000;/最多的圖書(shū)classBook/圖書(shū)類inttag;/刪除標(biāo)記1:已刪0:未刪intno;/圖書(shū)編號(hào)charname20;/書(shū)名charauthor10;/作者名charno210;/輸入分類號(hào)chardan20;/輸入出版單位chartime20;/出版時(shí)間intprice;/價(jià)格public:Book()char*getname()returnname;獲取姓名intgetno()returnno;/獲取圖書(shū)編號(hào)intgettag()ret

2、urntag;/獲取刪除標(biāo)記char*getauthor()returnauthor;/獲取作者名char*getno2()returnno2;/獲取分類號(hào)char*getdan()returndan;/獲取出版單位char*gettime()returntime;/獲取出版時(shí)間chargetprice()returnprice;/獲取圖書(shū)價(jià)格voidsetname(charna)/設(shè)置書(shū)名strcpy(name,na);voidsetauthor(charau)/設(shè)置作者名strcpy(author,au);voidsetno2(charn口)設(shè)置分類號(hào)strcpy(no2,n);voids

3、etdan(chard)/設(shè)置出版單位strcpy(dan,d);voidsettime(chart)/設(shè)置出版時(shí)間strcpy(time,t);voiddelbook()tag=1;/刪除圖書(shū)voidaddbook(intn,char*na,char*au,char*n2,char*da,char*ti,intpr)/tag=0;no=n;增加圖書(shū)price=pr;strcpy(name,na);strcpy(author,au);strcpy(no2,n2);strcpy(dan,da);strcpy(time,ti);voiddisp()/輸出圖書(shū)coutsetw(10)nosetw(1

4、0)namesetw(10)setw(10)authorsetw(10)no2setw(10)dansetw(10)timesetw(10)priceendl;classBDatabase/圖書(shū)庫(kù)類inttop;/圖書(shū)記錄指針BookbookMaxb;圖書(shū)記錄public:BDatabase()/構(gòu)造函數(shù),將book.txt讀至Ubook口中Bookb;top=-1;fstreamfile(book.txt,ios二in);while(1)(file.read(char*)&b,sizeof(b);if(!file)break;top+;booktop=b;file.close();v

5、oidclear()/全刪(top=-1;intaddbook(intn,char*na,char*au,char*n2,char*da,char*ti,intpr)增力口圖書(shū)(Book*p=query(n);if(p=NULL)(top+;booktop.addbook(n,na,au,n2,da,ti,pr);return1;return。;Book*query(intbookid)/查找圖書(shū)(for(inti=0;i=top;i+)if(booki.getno()=bookid&booki.gettag()=0)return&booki;returnNULL;Book*q

6、uery2(intbookid,char*name)/按書(shū)名查找圖書(shū)for(inti=0;i=top;i+)if(strcmp(booki.getname(),name)=0)bookid=booki.getno();return&booki;returnNULL;Book*query3(intbookid,char*author)/按作者查找圖書(shū)for(inti=0;i=top;i+)if(strcmp(booki.getauthor(),author)=0)bookid=booki.getno();return&booki;returnNULL;voidbookdata()

7、;/圖書(shū)庫(kù)維護(hù)voiddisp()coutsetw(10)圖書(shū)編號(hào)setw(10)圖書(shū)名字setw(10)圖書(shū)作者setw(10)圖書(shū)分類setw(10)出版單位setw(10)出版時(shí)間setw(10)價(jià)格endl;for(inti=0;i=top;i+)if(booki.gettag()=0)booki.disp();BDatabase()/析構(gòu)函數(shù),將book口寫(xiě)入book.txt文件中fstreamfile(book.txt,ios二out);for(inti=0;i=top;i+)if(booki.gettag()=0)file.write(char*)&booki,sizeo

8、f(booki);file.close();voidBDatabase:bookdata()intchoice=1;intchoice2=1;intchoice3=1;intchoice4=1;charbname40;charbauthor10;charbno220;charbdan20;charbtime20;intbprice;intbookid;Book*b;while(choice!=0)coutendlendl;cout*1添加信息*endl;cout*2修改信息*endl;cout*3刪除信息*endl;cout*4信息查詢*endl;cout*5顯示信息*endl;cout*6全

9、部刪除*endl;cout*0退出*endl;coutendlchoice;/如果輸入的編號(hào)在菜單里不存在的情況-在for循環(huán)內(nèi)部如果出現(xiàn)這樣的錯(cuò)的時(shí)候while(choice!=1&choice!=2&choice!=3&choice!=4&choice!=5&choice!=6&choice!=0)coutendl*您輸入的編號(hào)在菜單里不存在,請(qǐng)重新輸入*aendlendl;coutchoice;switch(choice)case1:cout輸入圖書(shū)編號(hào):”;cout*”endl;cout*”endlbookid;coutbname;cou

10、tbauthor;coutbno2;coutbdan;coutbtime;coutbprice;addbook(bookid,bname,bauthor,bno2,bdan,btime,bprice);cout圖書(shū)編號(hào)bookid添加成功;按任意鍵返回菜單break;case2:coutbookid;b=query(bookid);if(b=NULL)cout該圖書(shū)不存在endl;break;coutendlendl;cout*1書(shū)名*”endl;cout*2作者*”endl;cout*3分類號(hào)*endl;cout*4出版單位*endl;cout*5出版時(shí)間*endl;cout*0退出系統(tǒng)*e

11、ndl;coutchoice2;switch(choice2)case1:coutbname;b-setname(bname);break;case2:coutbauthor;b-setauthor(bauthor);break;case3:coutsetno2(bno2);cout*endl;cout*”endlendl;break;case4:coutbdan;b-setdan(bdan);break;case5:coutbtime;b-settime(btime);/修改出版時(shí)間break;break;case3:coutbookid;b=query(bookid);if(b=NULL)

12、cout該圖書(shū)不存在delbook();break;cout查找方式:endlchoice3;switch(choice3)case1:coutbookid;b=query(bookid);if(b=NULL)cout該圖書(shū)不存在disp();break;case2:coutbname;b=query2(bookid,bname);if(b=NULL)cout該圖書(shū)不存在?。isp();)break;case3:coutbauthor;b=query3(bookid,bauthor);if(b=NULL)cout該作者不存在!disp();)break;)break;case5:disp()

13、;break;case6:clear();break;coutendl謝謝您的支持!歡迎下次繼續(xù)使用endlendlendl;);voidmain()system(color2f);coutendl;coutendl;cout請(qǐng)登錄!endl;coutendl;coutendl;intq=0,w=1001;number:inte;cout”請(qǐng)輸入賬號(hào)e;if(q=e)number1:intr;cout”請(qǐng)輸入密碼r;if(w=r)fstreamiofile;if(!iofile)(cout打開(kāi)文件失?。ndl;cout*”endl;cout*”endl;)system(cls);BDatabaseBookDB;Book*b;intnb;(coutendlendl;coutendl;coutendl;coutendl;co

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 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ì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論