精選商品銷售_第1頁
精選商品銷售_第2頁
精選商品銷售_第3頁
精選商品銷售_第4頁
精選商品銷售_第5頁
已閱讀5頁,還剩3頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

1、商品銷售#include #include #include #include using namespace std;struct Sale /數(shù)據域。 string m_code; string m_name; float m_price; unsigned int m_quantity; /指針域。 struct Sale* next;typedef struct Sale Node;/取外別名,Node.typedef Node* Link;/取個別名,Link./創(chuàng)立鏈表。Link Create(Link Head) /-初始化頭節(jié)點 Head- Head=(Link)new Nod

2、e;/每次動態(tài)分配一個Node內存大小。 Head-m_code=; Head-m_name=; Head-m_price=0.0; Head-m_quantity=0; Head-next=NULL; /- Link ptr;/定義一個用來運算的指針 ptr。 ptr=Head;/指到首節(jié)點。 Link DNode;/定義數(shù)據節(jié)點,用來存放數(shù)據。 char GoOn; do cout商品信息錄入! endl; string code,name; float price; unsigned int quantity; cout輸入代碼:code; cout輸入名稱:name; cout輸入價格

3、:price; while(cin.fail() cout請輸入正確的格式:price; cout輸入數(shù)量:quantity; while(cin.fail() cout請輸入正確的格式:quantity; /-數(shù)據域- DNode=(Link)new Node;/每次動態(tài)分配一個Node內存大小。 DNode-m_code=code; DNode-m_name=name; DNode-m_price=price; DNode-m_quantity=quantity; /-指針域- DNode-next=NULL;/作為尾節(jié)點參加。 ptr-next=DNode;/鏈入鏈表中。 ptr=DNo

4、de;/使新節(jié)點成為下一次的前驅。 coutGoOn; while(GoOn=Y|GoOn=y); return Head;/釋放鏈表。void Release(Link Head) Link ptr; while(Head!=NULL) ptr=Head; Head=Head-next; delete ptr; /查詢。Link Search(Link Head,string& code) Link ptr; /Link front; ptr=Head;/定義一個用于操作的指針ptr。 /ptr=fornt-next; while(ptr!=NULL) if(ptr-m_code=code)

5、 return ptr; else ptr=ptr-next; cout無此商品!next;/,不要頭節(jié)點,只輸出數(shù)據節(jié)點。 cout=endl; cout=所有商品信息清單=endl; cout=endl; cout貨品代碼=貨品名稱=貨品價格=貨品數(shù)量=endl; while(ptr!=NULL) coutsetw(15)leftm_code setw(15)leftm_name setw(15)leftm_price setw(15)leftm_quantitynext; void Display_One(Link Head,string& code,unsigned quantity)

6、 Link ptr; ptr=Search(Head,code);/,不要頭節(jié)點,只輸出數(shù)據節(jié)點。 cout貨品代碼=貨品名稱=貨品價格=貨品數(shù)量=小計(元)=endl; coutsetw(15)leftm_code setw(15)leftm_name setw(15)leftm_price setw(15)leftquantity setw(15)leftm_pricem_price*quantity); return sum;/總結帳。void Total(Link Head) Link ptr; ptr=Head; float sum(0); float factly; char Go

7、On; while(1) cout要結束商品買入請按N,其它任意鍵表示繼續(xù)買入! GoOn; if(GoOn=N|GoOn=n) break; else string code; unsigned int quantity; cout輸入要購置的商品代碼:code; cout輸入要購置的數(shù)量:quantity; sum+=CheckOut(ptr,code,quantity); cout你購置的商品為:endl; Display_One(ptr,code,quantity); cout-endl; cout你應該付 sum元!endl; coutfactly; cout應該找回你 factly

8、-sum元!endl;/找零。int main() /-菜單項選擇項- Link Head=NULL; /Head=Create(Head); int loop=1; while(loop) cout*endl; cout*-菜單項選擇項-*endl; cout*-*endl; cout* 1.輸入數(shù)據 2.買入商品 3.顯示數(shù)據 0.退出系統(tǒng) *endl; cout*menu; if(cin.fail() cout請按菜單對應的數(shù)字選擇適宜的操作,謝謝合作!menu; switch(menu) case 0: cout已退出系統(tǒng)!endl; loop=0; break; case 1: Head=Create(Head); break; case 2: Tot

溫馨提示

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

評論

0/150

提交評論