收藏 分销(赏)

C语言程序仓库管理系统.doc

上传人:人****来 文档编号:3066167 上传时间:2024-06-14 格式:DOC 页数:12 大小:39KB
下载 相关 举报
C语言程序仓库管理系统.doc_第1页
第1页 / 共12页
C语言程序仓库管理系统.doc_第2页
第2页 / 共12页
C语言程序仓库管理系统.doc_第3页
第3页 / 共12页
C语言程序仓库管理系统.doc_第4页
第4页 / 共12页
C语言程序仓库管理系统.doc_第5页
第5页 / 共12页
点击查看更多>>
资源描述

1、#include #include #include #include struct Infochar num20; char name20;int price; int amount;char menu() /*菜单选择函数*/ char n; /*n记录选择的菜单*/ system(cls); puts(tt 欢迎来到仓库货物管理系统 ); puts(tt*MENU*n); puts(tt* 1.录入货物信息 *n); puts(tt* 2.显示货物信息 *n); puts(tt* 3.查找货物信息 *n); puts(tt* 4.修改货物信息 *n); puts(tt* 5.删除货物信息

2、 *n); puts(tt* 6.退出系统 *n); puts(tt*n); puts(*); printf(* 请选择你要输入数(1-6): *n); puts(*); while(1) n=getchar(); getchar(); if(n6) puts(*); printf(* 出错了!请再次输入(1-6): *n); puts(*); else break; return n; void append() /*货物信息输入函数*/ struct Info info; FILE * fp; char ch;if(fp=fopen(F:testfilemolde123.txt,wb) =

3、 NULL) printf(*n); printf(* 不能打开文件! *n); printf(*n); getch(); exit(1); do printf(tnum:); gets(info.num); printf(tname:); gets(info.name); printf(tprice:); scanf(%d,&info.price); printf(tamount:); scanf(%d,&info.amount); getchar(); fwrite(&info,sizeof(info),1,fp); printf(*n); printf(* 还需要输入吗?(Y/N): *

4、n); printf(*n); ch=getchar(); getchar(); while(ch=Y|ch=y); fclose(fp); void printf1() printf(*n); printf(tt%-10st%-10st%-10st%-10sn,num,name,price,amountn);printf(*n); void printf2(struct Info info) printf(-n); printf(tt%-10st%-10st%-10dt%-10dn,info.num,info.name,info.price,info.amount ); printf(-n)

5、; void display() /*货物信息显示函数*/ struct Info info; FILE * fp; int m=0; if(fp=fopen(F:testfilemolde123.txt,rb)=NULL) printf(*); printf(* 不能打开文件! *); 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(* 输入任何键继续 *);

6、printf(*n); getch(); puts(nn); printf1(); fclose(fp); printf(*n); printf(* 总共有%d条记录在其中! *n,m); printf(*n); getch(); void search() /*货物信息查询函数*/ struct Info info; FILE * fp; int flag; /* flag为 1 按编号查询 ,flag为 2 按姓名查询*/ int total=0; /*记录符合条件的记录的个数*/ char ch10; char f; if(fp=fopen(F:testfilemolde123.txt,

7、rb) = NULL) printf(*n); printf(* t 不能打开文件! *n); printf(*n); getch(); exit(1); do rewind(fp); printf(*n);printf(* 查询通过(1:编号 2:姓名): *n); printf(*n);while(1) scanf(%d,&flag); getchar(); if(flag2) printf(*n); printf(* 出错了!请再次输入1:编号2:姓名 *n); printf(*n); else break; if(flag=1) /*按编号进行查询*/ printf(*n); prin

8、tf(* 请输入你要查询的编号: *n); printf(*n); gets(ch); total=0; /*符合条件的记录数*/ while(fread(&info,sizeof(info),1,fp)=1) if(strcmp(ch,info.num)=0) total+; if(total=1) printf1(); printf2(info); else /*按姓名进行查询*/ printf(*n); printf(* 请输入你要查询的姓名: *n); printf(*n); gets(ch); total=0; while(fread(&info,sizeof(info),1,fp)

9、=1) if(strcmp(ch,info.name)=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); void modify() /*货物信息修改函数*/ struct Info info;FILE * fp1,* fp2;in

10、t flag;char ch10;char f;do if(fp1=fopen(F:testfilemolde123.txt,rb) = NULL) printf(*n); printf( * 不能打开文件! *n);printf(*n); getch(); exit(1); if(fp2=fopen(F:testfilemolde456.txt,wb) = NULL) printf(*n); printf( * 不能打开文件! *n);printf(*n); getch(); exit(1); printf(*n);printf(* 请输入你要修改的货物编号: *n); printf(*n)

11、;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(info.name); printf(tprice:); scanf(%d,&info.price); printf(tamount:); scanf(%d,&info.amoun

12、t); getchar();flag=1; fwrite(&info,sizeof(info),1,fp2); fclose(fp1); fclose(fp2); if(flag=1) printf(*n); printf(* 修改成功! *n);printf(*n);remove(F:testfilemolde123.txt);rename(F:testfilemolde456.txt,F:testfilemolde123.txt); else printf(*n); printf(* 不能找到这个记录! *n); printf(*n); printf(*n); printf(* 还修改其他

13、吗?(Y/N): *n); printf(*n); f=getchar(); getchar();while(f=y|f=Y); void Delete() /*货物信息删除函数*/ struct Info info;FILE * fp1,* fp2;int flag;char ch10;char f;do if(fp1=fopen(F:testfilemolde123.txt,rb) = NULL) printf(*n); printf(* t 不能打开文件! *n); printf(*n); getch(); exit(1); if(fp2=fopen(F:testfilemolde456

14、.txt,wb) = NULL) printf(*n); printf(* t 不能打开文件! *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); flag=1; break; else fwrite(&info,sizeof(info),1,fp2);

15、 fclose(fp1); fclose(fp2); if(flag=1) printf(*n); printf(* 删除成功! *n); printf(*n);remove(F:testfilemolde123.txt);rename(F:testfilemolde456.txt,F:testfilemolde123.txt); else printf(*n); printf(* 不能找到这个记录! *n); printf(*n); printf(*n); printf(* 还删除其他吗?(Y/N): *n); printf(*n); f=getchar(); getchar();while

16、(f=y|f=Y); void main() /*主函数*/ while(1) int a; char f; char ch10; char num20=12345; printf(please input the secret :n); scanf(%s,ch); if(strcmp(num,ch)=0) a=1; if(a=1) printf(nplease enter in the telproject !n); f=getchar(); getchar(); break; else printf(n the secret is error); printf(please input the right secret); while(1) switch(menu() case1:append();break; case2:display();break; case3:search();break; case4:modify();break; case5:Delete();break; case6:exit(0);break;

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 通信科技 > 开发语言

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2025 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服