freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

商品管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn)畢業(yè)設(shè)計(jì)論文(已改無(wú)錯(cuò)字)

2022-10-10 20:46:34 本頁(yè)面
  

【正文】 if((relogin==39。Y39。)||(relogin==39。y39。)) { printf(you choose input again:\n)。 goto again。} else { 南昌航空大學(xué)科技學(xué)院學(xué)士學(xué)位論文 18 printf(end program)。 getch()。 exit(0)。 } } } 商品信息管理模塊 對(duì)若干商品價(jià)格記錄進(jìn)行創(chuàng)建商品信息文件、增加商品信息、輸出商品信息、修改商品信息、查詢商品價(jià)格和商品會(huì)員加排行瀏覽 6 項(xiàng)功能管理。 源文件: 管理員系統(tǒng)主控平臺(tái)及管理員功能調(diào)用。 普通顧客系統(tǒng)主控平臺(tái)及普通顧客功能調(diào)用。 創(chuàng)建商品價(jià)格信息文件。 增加價(jià)格信息。 刪除價(jià)格信息。 修改價(jià)格信息。 按商品名稱查詢價(jià) 格。 按商品序號(hào)查詢價(jià)格。 按會(huì)員加數(shù)額排序?yàn)g覽。 頭文件: 會(huì)員價(jià) =價(jià)格折扣( memberprice=price*discount) ( 1) void Admin() 功能: 給出管理員顧客的功能選擇提示界面,根據(jù)管理員顧客的選項(xiàng)調(diào)用相應(yīng)函數(shù)。 輸入: 管理員顧客輸入要進(jìn)行操作的數(shù)字選項(xiàng)。 處理: ( 1)接受管理員顧客輸入的操作選項(xiàng)。 ( 2)系統(tǒng)根據(jù)顧客輸入的操作選項(xiàng)調(diào)用相應(yīng)的功能函數(shù)。 南昌航空大學(xué)科技學(xué)院學(xué)士學(xué)位論文 19 ( 3)顯示相應(yīng)函數(shù)的操作過(guò)程和結(jié)果。 輸出:顧客選項(xiàng)對(duì)應(yīng)的函數(shù)的執(zhí)行結(jié)果。 程序清單( 1): include include include include define SIZE 100 /* definition*/ typedef struct { long Number。 /*Field of number */ char Name[20]。 /*Field of name */ float price。 /*Field of price */ float discount。 /*Field of discount */ float memberprice。 /*Filed of memberprice*/ }product。 extern void CreatFile()。 /*創(chuàng)建信息文件 */ extern void AddRecord()。 /*增加 */ extern void DelRecord()。 /*刪除 */ extern void ModifyByNumber()。 /*修改 */ extern void QueryBySeatNum()。 /*按序號(hào)查詢 */ extern void QueryByName()。 /*按姓名查詢 */ extern void SortByMemberPrice()。 /*按會(huì)員價(jià)查詢 程序清單( 2): /*:管理員功能選擇界面,根據(jù)客戶選項(xiàng)調(diào)用相應(yīng)函數(shù)實(shí)現(xiàn)系統(tǒng)功能 */ include include include include include include include include void Admin() { int choice = 0。 /*存放客戶選項(xiàng)的變量 */ /*====功能及 操作的界面提示 ====*/ while(1) { printf(\n)。 printf(| |\n)。 printf(| Wele to Product Management System |\n)。 南昌航空大學(xué)科技學(xué)院學(xué)士學(xué)位論文 20 printf(| |\n)。 printf(||\n)。 printf(| 1. Init Product Information File |\n)。 printf(| 2. AddProduct() |\n)。 printf(| 3. DelProduct() |\n)。 printf(| 4. QueryByProductName() |\n)。 printf(| 5. QueryByProductNum() |\n)。 printf(| 6. ModifyByProductNumber() |\n)。 printf(| 7. SortByMemberPrice() |\n)。 printf(++++++++++++++++++++++++++++++++++++++++++++++++++++\n)。 printf(| System User Management |\n)。 printf(| () |\n)。 printf(| () |\n)。 printf(| () |\n)。 printf(| () |\n)。 printf(| () |\n)。 printf(++++++++++++++++++++++++++++++++++++++++++++++++++++\n)。 printf(| 0. Exit System |\n)。 printf(\n)。 printf( Please Input Your Choose \n)。 printf( number 1~7 to Manage the Product Information \n)。 printf( number 11,12,13,14,15 to Manage the System User \n)。 printf( number 0 to Exit the System \n)。 printf(\n)。 scanf(%d,amp。choice)。 getchar()。 /*根據(jù)客戶選項(xiàng)調(diào)用相應(yīng)函數(shù) */ switch(choice) { case 1: CreatFile()。 break。 case 2: AddRecord()。 break。 case 3: DelRecord()。 break。 case 4: QueryByName()。 break。 case 5: QueryBySeatNum()。 break。 南昌航空大學(xué)科技學(xué)院學(xué)士學(xué)位論文 21 case 6: ModifyByNumber()。 break。 case 7: SortByMemberPrice()。 break。 case 11: CreatUser()。 break。 case 12: AddUser()。 break。 case 13: DelUser()。 break。 case 14: ModifyByUserNumber()。 break。 case 15: SortByUserNum()。 break。 case 0: exit(0)。 default: break。 } } } (2) void guest() 功能:給出普通顧客的功能選擇提示界面,根據(jù)普通顧客的選項(xiàng)調(diào)用相應(yīng)功能。 輸入:普通顧客輸入其可使用功能的數(shù)字選項(xiàng)。 處理: ( 1)接受普通高考輸入的操作選項(xiàng)。 ( 2)系統(tǒng)根據(jù)顧客輸入的 操作選項(xiàng)調(diào)用相應(yīng)的功能函數(shù)。 ( 3) 顯示相應(yīng)函數(shù)的操作過(guò)程和結(jié)果。 輸出:顧客選項(xiàng)對(duì)應(yīng)的函數(shù)的執(zhí)行結(jié)果。 程序清單: /*:普通用戶功能選擇界面,根據(jù)用戶選項(xiàng)調(diào)用相應(yīng)函數(shù) */ void Guest() 南昌航空大學(xué)科技學(xué)院學(xué)士學(xué)位論文 22 { int choice = 0。 while(1) { printf(\n)。 printf(| |\n)。 printf(| Wele to Product Management System |\n)。 printf(| |\n)。 printf(||\n)。 printf(| |\n)。 printf(| 1. QueryByName() |\n)。 printf(| 2. QueryBySeatNum() |\n)。 printf(|
點(diǎn)擊復(fù)制文檔內(nèi)容
黨政相關(guān)相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖片鄂ICP備17016276號(hào)-1