版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
#include<stdio.h>#include<string.h>#include<stdlib.h>#include<conio.h>structInfo{ charnum[20];charname[20]; intprice;intamount;};charmenu()/*菜單項(xiàng)選擇擇函數(shù)*/{charn;/*n記錄選擇旳菜單*/system("cls");puts("\t\t歡迎來到倉庫貨品管理系統(tǒng)");puts("\t\t***********************MENU***********************\n");puts("\t\t*1.錄入貨品信息*\n");puts("\t\t*2.顯示貨品信息*\n");puts("\t\t*3.查找貨品信息*\n");puts("\t\t*4.修改貨品信息*\n");puts("\t\t*5.刪除貨品信息*\n");puts("\t\t*6.退出系統(tǒng)*\n");puts("\t\t**************************************************\n");puts("*********************************");printf("*請選擇你要輸入數(shù)(1-6):*\n");puts("*********************************");while(1){ n=getchar(); getchar(); if(n<'1'||n>'6') {puts("**********************************");printf("*出錯(cuò)了!請?jiān)俅屋斎?1-6):*\n");puts("**********************************"); } elsebreak;}returnn;}voidappend()/*貨品信息輸入函數(shù)*/{structInfoinfo;FILE*fp;charch;if((fp=fopen("F:\\test\\filemolde\\123.txt","wb"))==NULL){printf("******************\n");printf("*不能打開文獻(xiàn)!*\n");printf("******************\n");getch();exit(1);}do{printf("\tnum:");gets(info.num);printf("\tname:");gets();printf("\tprice:");scanf("%d",&info.price);printf("\tamount:");scanf("%d",&info.amount);getchar();fwrite(&info,sizeof(info),1,fp);printf("***************************\n");printf("*還需要輸入嗎?(Y/N):*\n");printf("***************************\n");ch=getchar();getchar();}while(ch=='Y'||ch=='y');fclose(fp);}voidprintf1(){printf("*************************************************************************\n");printf("\t\t%-10s\t%-10s\t%-10s\t%-10s\n","num","name","price","amount\n"); printf("*************************************************************************\n");}voidprintf2(structInfoinfo){printf("-------------------------------------------------------------------------\n");printf("\t\t%-10s\t%-10s\t%-10d\t%-10d\n",info.num,,info.price,info.amount);printf("-------------------------------------------------------------------------\n");}voiddisplay()/*貨品信息顯示函數(shù)*/{structInfoinfo;FILE*fp;intm=0;if((fp=fopen("F:\\test\\filemolde\\123.txt","rb"))==NULL){printf("******************");printf("*不能打開文獻(xiàn)!*");printf("******************");getch();exit(1);}while(fread(&info,sizeof(info),1,fp)==1){m++; if(m==1) printf1(); printf2(info); if((m!=0)&&(m%10==0)) {printf("*****************************\n"); printf("*輸入任何鍵繼續(xù)*");printf("*****************************\n"); getch(); puts("\n\n"); printf1(); }}fclose(fp);printf("************************************\n");printf("*總共有%d條記錄在其中!*\n",m);printf("************************************\n");getch();}voidsearch()/*貨品信息查詢函數(shù)*/{structInfoinfo;FILE*fp;intflag;/*flag為1按編號查詢,flag為2按姓名查詢*/inttotal=0;/*記錄符合條件旳記錄旳個(gè)數(shù)*/charch[10];charf;if((fp=fopen("F:\\test\\filemolde\\123.txt","rb"))==NULL){printf("************************************\n");printf("*\t不能打開文獻(xiàn)!*\n");printf("************************************\n");getch();exit(1);}do{rewind(fp);printf("************************************\n"); printf("*查詢通過(1:編號2:姓名):*\n");printf("************************************\n"); while(1) {scanf("%d",&flag); getchar(); if(flag<1||flag>2) {printf("*****************************************\n"); printf("*出錯(cuò)了!請?jiān)俅屋斎隱1:編號][2:姓名]*\n"); printf("*****************************************\n"); } else break; }if(flag==1)/*按編號進(jìn)行查詢*/ {printf("************************************\n");printf("*請輸入你要查詢旳編號:*\n");printf("************************************\n"); gets(ch); total=0;/*符合條件旳記錄數(shù)*/while(fread(&info,sizeof(info),1,fp)==1) if(strcmp(ch,info.num)==0) {total++; if(total==1) printf1(); printf2(info); } } else/*按姓名進(jìn)行查詢*/ {printf("************************************\n");printf("*請輸入你要查詢旳姓名:*\n");printf("************************************\n"); gets(ch); total=0;while(fread(&info,sizeof(info),1,fp)==1) if(strcmp(ch,)==0) {total++; if(total==1) printf1(); printf2(info); } }printf("************************************\n"); printf("*總共有%d記錄在其中!*\n",total);printf("************************************\n");printf("************************************\n"); printf("*還需要查詢嗎?(Y/N):*\n"); printf("************************************\n"); f=getchar(); getchar();}while(f=='Y'||f=='y');fclose(fp);}voidmodify()/*貨品信息修改函數(shù)*/{structInfoinfo; FILE*fp1,*fp2; intflag; charch[10]; charf; do {if((fp1=fopen("F:\\test\\filemolde\\123.txt","rb"))==NULL) {printf("************************************\n");printf("*不能打開文獻(xiàn)!*\n"); printf("************************************\n");getch();exit(1); } if((fp2=fopen("F:\\test\\filemolde\\456.txt","wb"))==NULL) {printf("************************************\n");printf("*不能打開文獻(xiàn)!*\n"); printf("************************************\n");getch();exit(1); }printf("************************************\n"); printf("*請輸入你要修改旳貨品編號:*\n");printf("************************************\n"); gets(ch); flag=0;while(fread(&info,sizeof(info),1,fp1)==1) { if(strcmp(ch,info.num)==0) {printf1(); printf2(info);printf("************************************\n"); printf("*請輸入新旳信息:*\n");printf("************************************\n");printf("\tnum:");gets(info.num);printf("\tname:");gets();printf("\tprice:");scanf("%d",&info.price);printf("\tamount:");scanf("%d",&info.amount);getchar(); flag=1; }fwrite(&info,sizeof(info),1,fp2); } fclose(fp1); fclose(fp2); if(flag==1) {printf("************************************\n");printf("*修改成功!*\n"); printf("************************************\n"); remove("F:\\test\\filemolde\\123.txt"); rename("F:\\test\\filemolde\\456.txt","F:\\test\\filemolde\\123.txt"); } else {printf("************************************\n"); printf("*不能找到這個(gè)記錄!*\n");printf("************************************\n"); }printf("************************************\n"); printf("*還修改其他嗎?(Y/N):*\n"); printf("************************************\n"); f=getchar(); getchar(); }while(f=='y'||f=='Y');}voidDelete()/*貨品信息刪除函數(shù)*/{structInfoinfo; FILE*fp1,*fp2; intflag; charch[10]; charf; do {if((fp1=fopen("F:\\test\\filemolde\\123.txt","rb"))==NULL) { printf("************************************\n");printf("*\t不能打開文獻(xiàn)!*\n");printf("************************************\n");getch();exit(1); } if((fp2=fopen("F:\\test\\filemolde\\456.txt","wb"))==NULL) {printf("************************************\n");printf("*\t不能打開文獻(xiàn)!*\n");printf("************************************\n");getch();exit(1); } printf("************************************\n");printf("*請輸入你需要?jiǎng)h除貨品旳編號:*\n");printf("************************************\n"); gets(ch); flag=0;while(fread(&info,sizeof(info),1,fp1)==1) { if(strcmp(ch,info.num)==0) {printf1(); printf2(info); flag=1; break; } elsefwrite(&info,sizeof(info),1,fp2); }fclose(fp1); fclose(fp2); if(flag==1) {printf("************************************\n");printf("*刪除成功!*\n");printf("************************************\n"); remove("F:\\test\\filemolde\\123.txt"); rename("F:\\test\\filemolde\\456.txt","F:\\test\\filemolde\\123.txt"); } else {
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(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)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五年二手房交易公證服務(wù)標(biāo)準(zhǔn)合同3篇
- 2024年租賃代理協(xié)議(房地產(chǎn)中介)2篇
- 2025版網(wǎng)絡(luò)技術(shù)服務(wù)購銷合同2篇
- 2025版礦長勞動(dòng)合同附礦產(chǎn)資源開發(fā)利用合同3篇
- 百色職業(yè)學(xué)院《智慧施工》2023-2024學(xué)年第一學(xué)期期末試卷
- 2025年智能交通系統(tǒng)環(huán)境安全維護(hù)合同2篇
- 2025版廢鋼資源整合與供應(yīng)鏈優(yōu)化合同
- 2024年中小公司勞動(dòng)合同范本(含知識產(chǎn)權(quán)歸屬協(xié)議)3篇
- 2024年物聯(lián)網(wǎng)智能家居系統(tǒng)開發(fā)合同
- 鞍山師范學(xué)院《采掘機(jī)械》2023-2024學(xué)年第一學(xué)期期末試卷
- 采購合同范例壁布
- 公司員工出差車輛免責(zé)協(xié)議書
- 2024年陜西榆林市神木市公共服務(wù)輔助人員招聘775人歷年管理單位遴選500模擬題附帶答案詳解
- 2024年度抖音短視頻拍攝制作服務(wù)合同范本3篇
- 2024-2025學(xué)年高二上學(xué)期期末數(shù)學(xué)試卷(提高篇)(含答案)
- 安全生產(chǎn)事故案例分析
- 2024年07月22208政治學(xué)原理期末試題答案
- 期末檢測卷(一)(試卷)-2024-2025學(xué)年外研版(三起)英語六年級上冊(含答案含聽力原文無音頻)
- 《客戶開發(fā)技巧》課件
- 《防范于心反詐于行》中小學(xué)防范電信網(wǎng)絡(luò)詐騙知識宣傳課件
- 口腔執(zhí)業(yè)醫(yī)師定期考核試題(資料)帶答案
評論
0/150
提交評論