版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、目錄一、需求分析 .2二、概要設(shè)計 .2三、詳細(xì)設(shè)計 .3四、調(diào)試分析 .9五、用戶手冊 .10六、測試數(shù)據(jù) .111一、需求分析商品銷售管理程序商品信息:商品編號、商品名稱、商品類別(普通電視機(jī)、DVD帶DVD的電視機(jī),帶DVD的電視機(jī)的售價為普通電視機(jī)和DVD單價之和的80%、商 品進(jìn)貨價格、商品銷售價格、商品數(shù)量、供應(yīng)商名稱等。記錄每一次銷售商品的數(shù)量和價格,并提供對已售出商品的價格、數(shù)量 進(jìn)行統(tǒng)計、排序功能,但允許用戶退商品。(要求:1.源文件采用多文件的工程結(jié)構(gòu)2.數(shù)據(jù)存儲采用文件形式3.標(biāo)準(zhǔn)的C輸入輸出4.功能完善,適當(dāng)?shù)淖⑨專?.關(guān)于文件的內(nèi)容需要自學(xué)) 二、概要設(shè)計1、數(shù)據(jù)類(
2、class Data)class Data/private:int id。char name100。int count。intsalecount。float iprice。float oprice。char gys20。Public:/ int getid()/char *getname() / Intgetcount()/的數(shù)據(jù)類型定義:數(shù)據(jù)類/產(chǎn)品編號/產(chǎn)品名稱/庫存數(shù)量/已售數(shù)量/進(jìn)價/售價/供應(yīng)商公有函數(shù)獲取id獲取產(chǎn)品名獲取庫存量C+課設(shè)商品銷售管理系統(tǒng)七、附錄.12Int getsalecount()/Float getbuy()/Float getsale()/Char *get
3、gys()/2Void setid(int n) / Voidsetname(char na) Voidsetcount(int c) Voidsetsalecount(int s) Voidsetbuy(float i) Voidsetsale(float o) Voidsetgys(char g) 。2、classcommodity/ / /商品類設(shè)計:class Commodity /private:Data t50。/2int n。/ public:void newFile() / voidshowData(int i) / voidshowData() / void save()/i
4、nt search()/void sale()/void showSale() / inlinevoid menu()/3、本程序結(jié)構(gòu)(1)主函數(shù)Void main()menu()。Commodity comint c。switch(c)returnBreak。 (2)數(shù)據(jù)類(3)商品類三、詳細(xì)設(shè)計(1)數(shù)據(jù)類class Dataprivate:獲取已售量獲取進(jìn)價獲取售價 獲取供應(yīng)商輸入id產(chǎn)品名庫存量已售量進(jìn)價售價供應(yīng)商商品類數(shù)組商品數(shù)量添加商品信息顯示商品信息顯示文字信息寫入數(shù)據(jù)至文件 商品查詢 商品銷售結(jié)算 銷售清單 主菜單實現(xiàn)對數(shù)據(jù)的輸入輸出 系統(tǒng)各項功能的實現(xiàn)。/數(shù)據(jù)類int id。
5、/產(chǎn)品編號char name100。/產(chǎn)品名稱intcount。/庫存數(shù)量int salecount。/已售數(shù)量float iprice。/進(jìn)價float oprice。/售價char gys20。/供應(yīng)商public:int getId()return id。char *getName()return name。int getCount()return count。int getSaleCount()return salecountfloat getBuy()return iprice。float getSale()return oprice。char *getGys()return gys
6、。/-void setId(int n)id=n。void setName(char na)strcpy(name,na)void setCount(int c)count=c。void setSaleCount(int s)salecount=s。void setBuy(float i)iprice=i。void setSale(float o)oprice=o。4/.void setGys(char g) strcpy(gys,g)。(2)商品類class Commodity /商品類private:Data t50。/int n。/public:void newFile() int id
7、。char name50 intcount。float iprice float oprice char gys20。if(n0)n=0int i數(shù)組商品數(shù)量/字符數(shù)組Data temp。for(。n+)coutid。if(id=-1)break。tn.setId(id)。coutname。tn.setName(name)。coutcount。tn.setCount(count)。coutiprice。tn.setBuy(iprice)。coutoprice。tn.setSale(oprice)。coutgys。tn.setGys(gys)。tn.setSaleCount(0)。/售出此產(chǎn)品0
8、個cout若商品添加完畢,請按-1退出添加!endl for(i=0。itn.getId()temp=ti。ti=tn。tn=temp。void showData(int i)coutti.getId()setw(10)ti.getName()setw(10)ti.getCount()setw(10)ti.getSaleCount()6setw(8)ti.getBuy()setw(8)ti.getSale() setw(8)ti.getGys()endl。void showData()cout商品編號setw(8)商品名setw(8)庫存量setw(10)已售量setw(10)進(jìn)價setw(8
9、)售價6setw(8)供應(yīng)商endl。for(int i=0。i0 )showData(i)。cout產(chǎn)品種類:nendl。void save() /寫入數(shù)據(jù)至文件ofstream fout。fout.open(商品銷售管理系統(tǒng).txt)。if(!fout)coutcannot open the file!endl。return。fout商品編號 商品名 庫存量 進(jìn) 價售價 供應(yīng)商 已售量endl。for(int i=0。in。i+)foutti.getId()setw(14)ti.getName()setw(10)ti.getCount()setw(10)ti.getBuy()setw(10
10、)ti.getSale()setw(10)ti .getGys()setw(10)ti.getSaleCount()。cout*Save Success!*endl。fout.close()。int search()int idcoutid。int low=0,mid,high=n-1。while(lowid) high=mid-1。Else low=mid+1。7return -1。void sale()cout產(chǎn)品編號。int temp。temp=search()。if(temp=-1)coutcannot find the commodity!endl return。if(ttemp.g
11、etCount()=0)cout此產(chǎn)品已缺!endl。int count。coutcount。float money。coutmoney。if(countttemp.getCount()/超出該產(chǎn)品庫存量cout數(shù)量輸入不正確endl。elseif(moneyttemp.getSale()*count)8cout購物金額不足,還需增加金額ttemp.getSale()*count-money元endl。輸入的是負(fù)數(shù)或elsettemp.setCount(ttemp.getCount()-count)。/當(dāng)前庫存減少countvoid showSale()for(int i=0。i0 ) sho
12、wData(i)。(3)主函數(shù)inline void menu()cout *歡迎使用商品銷售管理系統(tǒng)* endlendl加countcout*名稱:vttemp.getName()vendl*數(shù)量:countendl*單價:ttemp.getSale()vv元endl8*應(yīng)收:count*ttemp.getSale()元endl*找零:money-coutcoutendl。coutendl。coutendl。coutendl。coutendl。coutendl。*(1)(2)(3)(4)(5)(0)單*添加保存顯示菜單銷售單退出系統(tǒng)endlcout*2011-201*ttemp.setSal
13、eCount(ttemp.getSaleCount()+count)。/出售量增count*ttemp.getSale()元endl*endlovoid main()menu()。Commodity com。int c。for(。)coutc。9switch(c)case 1:com.newFile()。break。case 2:com.save()。break。case 3:com.showData()。break。case 4:menu()。break。case 5:com.sale()。break。case 0:cout *謝謝使用*endl。cout *!再見!*endl。return
14、。break。四、調(diào)試手冊(1)、error C2143: syntax error : missing 。 before 行246少了一個分號(2)、error C2562: main : void function returning a value空類型不能有返回值(3)、error C2679: binary : no operator defined which takes a right-handoperand of type (or there is no acceptable conversion) ti.getName后面少了()五、用戶手冊1、本程序的運(yùn)行環(huán)境為window
15、s操作系統(tǒng),執(zhí)行文件為Ks.exe;2、進(jìn)入演示程序后,即顯示對話形式的提示操作過程:如:第一項:(1)商品添加功能 在選擇一欄輸入:1即顯示商品編號、商品名、庫存量、進(jìn)價、售價、供應(yīng)商各項商 品信息,依次輸入所需添加的數(shù)據(jù) 。添加商品完畢,按-1退出添加。 選擇:2即將商品信息保存。選擇:3顯示已保存的商品信息。選擇:4重新回到主菜單。選擇:5進(jìn)行商品銷售結(jié)算。同時選擇:3顯示商品庫存和已銷售的完 整信息。六、測試數(shù)據(jù)進(jìn)入演示程序后,即顯示對話形式的提示操作過程: 選擇:110輸入相應(yīng)提示的商品信息選擇:2界面顯示數(shù)據(jù)保存成功選擇:3顯示商品信息11選擇:4重新回到主菜單選擇:5進(jìn)行商品結(jié)算
16、選擇:3顯示商品信息七、附錄程序源代碼:#include#include#include#include /為了聲明標(biāo)識符setw()函數(shù)#define Mfname 100 class Data /數(shù)據(jù)類private:int id。/產(chǎn)品編號char name100。/產(chǎn)品名稱int count。/庫存數(shù)量int salecount。/已售數(shù)量float iprice。/進(jìn)價float oprice。/售價char gys20。/供應(yīng)商public:int getId()return id。iprice=i。char *getName()return name。int getCount()
17、return count。int getSaleCount()return salecount。float getBuy()return iprice。12float getSale()return oprice。char *getGys()return gys。/-void setId(int n)id=n。void setName(char na)strcpy(name,na)。void setCount(int c)count=c。void setSaleCount(int s)salecount=s。void setBuy(float i)void setSale(float o)op
18、rice=o。/.void setGys(char g)strcpy(gys,g)。class Commodity/商品類private:13Data t50。/數(shù)組int n。/商品數(shù)量public:void newFile()int id。char name50。/字符數(shù)組int count。float iprice。float oprice。char gys20。if(n0) n=0。int i。Data temp。for(。n+)coutid。if(id=-1)break。tn.setId(id)。coutname。tn.setName(name)。coutcount。tn.setCo
19、unt(count)。iprice=i。coutiprice。tn.setBuy(iprice)。coutoprice。tn.setSale(oprice)。coutgys。tn.setGys(gys)。tn.setSaleCount(0)。/售出此產(chǎn)品0個 14cout若商品添加完畢,請按-1退出添加!endl。for(i=0。itn.getId()temp=ti。ti=tn。tn=temp。void showData(int i)15coutti.getId()setw(10)ti.getName() setw(10)ti.getCount()setw(10)ti.getSaleCount
20、() setw(8)ti.getBuy()setw(8)ti.getSale() setw(8)ti.getGys()endl。void showData()cout商品編號setw(8)商品名 setw(8)庫存量 setw(10)已售量 setw(10)進(jìn)價 setw(8)售價 setw(8)供應(yīng)商endl。for(int i=0。i0 )showData(i)。cout產(chǎn)品種類:nendl。void save() /寫入數(shù)據(jù)至文件ofstream fout。fout.open(商品銷售管理系統(tǒng).txt)。if(!fout)15coutcannot open the file!endl。r
21、eturn。fout商品編號 商品名 庫存量 進(jìn)價 售價 供應(yīng)商 已售量endl。for(int i=0。in。i+)foutti.getId()setw(14)ti.getName()setw(10)ti.getCount()setw(10)ti.getBuy()setw(10)ti.getSale()setw(10)ti.getGys()setw(10)ti.getSaleCount()。cout*Save Success!*endl。fout.close()。int search()int id。coutid。int low=0,mid,high=n-1。while(lowid)high
22、=mid-1。elselow=mid+1。return -1。void sale()cout產(chǎn)品編號。int temp。temp=search()。if(temp=-1)coutcannot find the commodity!endl。return。16if(ttemp.getCount()=0)cout此產(chǎn)品已缺!endl。int count。coutcount。float money。coutmoney。if(countttemp.getCount()/輸入的是負(fù)數(shù)或超出該產(chǎn)品庫存量17cout數(shù)量輸入不正確endl。else if(moneyttemp.getSale()*count)cout購物金額不足
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年度綠色停車場建設(shè)與維護(hù)承包合同4篇
- 二零二五年度建筑工地鋼管腳手架安全檢測合同范本4篇
- 2025年度圖書館場地租賃及圖書借閱服務(wù)協(xié)議4篇
- 二零二五年度大廈智能化照明裝修合同樣本4篇
- 二零二五版模特隱私權(quán)保護(hù)與廣告代言合同4篇
- 二零二五版體育賽事贊助及廣告合作合同4篇
- 2025版中小企業(yè)貸款額度及利率合同4篇
- 2025年度苗木種植基地農(nóng)業(yè)廢棄物資源化利用合同7篇
- 二零二五年度房屋漏水保險理賠服務(wù)合同4篇
- 2025年度大連安居客平臺二手房源信息查詢與推廣服務(wù)合同3篇
- 2022年湖北省武漢市中考數(shù)學(xué)試卷含解析
- TLFSA 003-2020 危害分析與關(guān)鍵控制點(HACCP)體系調(diào)味面制品生產(chǎn)企業(yè)要求
- LY/T 2244.3-2014自然保護(hù)區(qū)保護(hù)成效評估技術(shù)導(dǎo)則第3部分:景觀保護(hù)
- 紀(jì)律教育月批評與自我批評五篇
- GB/T 26480-2011閥門的檢驗和試驗
- GB/T 13342-2007船用往復(fù)式液壓缸通用技術(shù)條件
- 藥店員工教育培訓(xùn)資料
- GB 20371-2016食品安全國家標(biāo)準(zhǔn)食品加工用植物蛋白
- 【英語手寫體】26英文字母手寫體描紅書寫字帖
- 實習(xí)護(hù)生壓瘡相關(guān)知識掌握情況及預(yù)防態(tài)度的調(diào)查問卷
- 《駱駝祥子》第(9、10、11、12)章檢測題
評論
0/150
提交評論