版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
#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歡迎來(lái)到倉(cāng)庫(kù)貨品管理系統(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("*請(qǐng)選擇你要輸入數(shù)(1-6):*\n");puts("*********************************");while(1){ n=getchar(); getchar(); if(n<'1'||n>'6') {puts("**********************************");printf("*出錯(cuò)了!請(qǐng)?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("*不能打開(kāi)文獻(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("*不能打開(kāi)文獻(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按編號(hào)查詢,flag為2按姓名查詢*/inttotal=0;/*記錄符合條件旳記錄旳個(gè)數(shù)*/charch[10];charf;if((fp=fopen("F:\\test\\filemolde\\123.txt","rb"))==NULL){printf("************************************\n");printf("*\t不能打開(kāi)文獻(xiàn)!*\n");printf("************************************\n");getch();exit(1);}do{rewind(fp);printf("************************************\n"); printf("*查詢通過(guò)(1:編號(hào)2:姓名):*\n");printf("************************************\n"); while(1) {scanf("%d",&flag); getchar(); if(flag<1||flag>2) {printf("*****************************************\n"); printf("*出錯(cuò)了!請(qǐng)?jiān)俅屋斎隱1:編號(hào)][2:姓名]*\n"); printf("*****************************************\n"); } else break; }if(flag==1)/*按編號(hào)進(jìn)行查詢*/ {printf("************************************\n");printf("*請(qǐng)輸入你要查詢旳編號(hào):*\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("*請(qǐng)輸入你要查詢旳姓名:*\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("*不能打開(kāi)文獻(xiàn)!*\n"); printf("************************************\n");getch();exit(1); } if((fp2=fopen("F:\\test\\filemolde\\456.txt","wb"))==NULL) {printf("************************************\n");printf("*不能打開(kāi)文獻(xiàn)!*\n"); printf("************************************\n");getch();exit(1); }printf("************************************\n"); printf("*請(qǐng)輸入你要修改旳貨品編號(hào):*\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("*請(qǐng)輸入新旳信息:*\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不能打開(kāi)文獻(xiàn)!*\n");printf("************************************\n");getch();exit(1); } if((fp2=fopen("F:\\test\\filemolde\\456.txt","wb"))==NULL) {printf("************************************\n");printf("*\t不能打開(kāi)文獻(xiàn)!*\n");printf("************************************\n");getch();exit(1); } printf("************************************\n");printf("*請(qǐng)輸入你需要?jiǎng)h除貨品旳編號(hào):*\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. 本站所有資源如無(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ì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 公會(huì)和斗魚(yú)之間合同范例
- 商場(chǎng)花卉租賃合同范例
- 公寓美甲店轉(zhuǎn)讓合同范例
- 合作餐飲協(xié)議合同范例
- 物業(yè)招商居間協(xié)議合同范例
- 唐山勞務(wù)合同范例定制
- 生產(chǎn)用品銷售合同范例
- 水泥合同違約合同范例
- 老人門衛(wèi)合同范例
- 拆遷領(lǐng)錢合同范例
- 2024年度抖音短視頻拍攝制作服務(wù)合同范本3篇
- 2024-2025學(xué)年高二上學(xué)期期末數(shù)學(xué)試卷(提高篇)(含答案)
- 2025年安全生產(chǎn)目標(biāo)實(shí)施計(jì)劃
- 福建百校2025屆高三12月聯(lián)考?xì)v史試卷(含答案解析)
- 期末檢測(cè)卷(一)(試卷)-2024-2025學(xué)年外研版(三起)英語(yǔ)六年級(jí)上冊(cè)(含答案含聽(tīng)力原文無(wú)音頻)
- 2024年山西省建筑安全員《B證》考試題庫(kù)及答案
- 2023年益陽(yáng)市安化縣招聘鄉(xiāng)鎮(zhèn)衛(wèi)生院護(hù)理人員筆試真題
- 《客戶開(kāi)發(fā)技巧》課件
- 《基于PLC的智能交通燈控制系統(tǒng)設(shè)計(jì)》10000字(論文)
- 人音版音樂(lè)七年級(jí)上冊(cè)《父親的草原母親的河》課件
- 2024年度短視頻內(nèi)容創(chuàng)作服務(wù)合同3篇
評(píng)論
0/150
提交評(píng)論