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

上传人:b****5 文档编号:6792844 上传时间:2023-01-10 格式:DOCX 页数:13 大小:16.24KB
下载 相关 举报
C语言程序仓库管理系统.docx_第1页
第1页 / 共13页
C语言程序仓库管理系统.docx_第2页
第2页 / 共13页
C语言程序仓库管理系统.docx_第3页
第3页 / 共13页
C语言程序仓库管理系统.docx_第4页
第4页 / 共13页
C语言程序仓库管理系统.docx_第5页
第5页 / 共13页
点击查看更多>>
下载资源
资源描述

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

《C语言程序仓库管理系统.docx》由会员分享,可在线阅读,更多相关《C语言程序仓库管理系统.docx(13页珍藏版)》请在冰豆网上搜索。

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

C语言程序仓库管理系统

#include

#include

#include

#include

structInfo

{

charnum[20];

charname[20];

intprice;

intamount;

};

charmenu()/*菜单选择函数*/

{

charn;/*n记录选择的菜单*/

system("cls");

puts("\t\t欢迎来到仓库货物管理系统");

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.退出系统*\n");

puts("\t\t**************************************************\n");

puts("*********************************");

printf("*请选择你要输入数(1-6):

*\n");

puts("*********************************");

while

(1)

{

n=getchar();

getchar();

if(n<'1'||n>'6')

{

puts("**********************************");

printf("*出错了!

请再次输入(1-6):

*\n");

puts("**********************************");

}

else

break;

}

returnn;

}

voidappend()/*货物信息输入函数*/

{

structInfoinfo;

FILE*fp;

charch;

if((fp=fopen("F:

\\test\\filemolde\\123.txt","wb"))==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):

*\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.name,info.price,info.amount);

printf("-------------------------------------------------------------------------\n");

}

voiddisplay()/*货物信息显示函数*/

{

structInfoinfo;

FILE*fp;

intm=0;

if((fp=fopen("F:

\\test\\filemolde\\123.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("*输入任何键继续*");

printf("*****************************\n");

getch();

puts("\n\n");

printf1();

}

}

fclose(fp);

printf("************************************\n");

printf("*总共有%d条记录在其中!

*\n",m);

printf("************************************\n");

getch();

}

voidsearch()/*货物信息查询函数*/

{

structInfoinfo;

FILE*fp;

intflag;/*flag为1按编号查询,flag为2按姓名查询*/

inttotal=0;/*记录符合条件的记录的个数*/

charch[10];

charf;

if((fp=fopen("F:

\\test\\filemolde\\123.txt","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(flag<1||flag>2)

{

printf("*****************************************\n");

printf("*出错了!

请再次输入[1:

编号][2:

姓名]*\n");

printf("*****************************************\n");

}

else

break;

}

if(flag==1)/*按编号进行查询*/

{

printf("************************************\n");

printf("*请输入你要查询的编号:

*\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)==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);

}

voidmodify()/*货物信息修改函数*/

{

structInfoinfo;

FILE*fp1,*fp2;

intflag;

charch[10];

charf;

do

{

if((fp1=fopen("F:

\\test\\filemolde\\123.txt","rb"))==NULL)

{

printf("************************************\n");

printf("*不能打开文件!

*\n");

printf("************************************\n");

getch();

exit

(1);

}

if((fp2=fopen("F:

\\test\\filemolde\\456.txt","wb"))==NULL)

{

printf("************************************\n");

printf("*不能打开文件!

*\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(info.name);

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("*不能找到这个记录!

*\n");

printf("************************************\n");

}

printf("************************************\n");

printf("*还修改其他吗?

(Y/N):

*\n");

printf("************************************\n");

f=getchar();

getchar();

}while(f=='y'||f=='Y');

}

voidDelete()/*货物信息删除函数*/

{

structInfoinfo;

FILE*fp1,*fp2;

intflag;

charch[10];

charf;

do

{

if((fp1=fopen("F:

\\test\\filemolde\\123.txt","rb"))==NULL)

{

printf("************************************\n");

printf("*\t不能打开文件!

*\n");

printf("************************************\n");

getch();

exit

(1);

}

if((fp2=fopen("F:

\\test\\filemolde\\456.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);

}

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("*不能找到这个记录!

*\n");

printf("************************************\n");

}

printf("************************************\n");

printf("*还删除其他吗?

(Y/N):

*\n");

printf("************************************\n");

f=getchar();

getchar();

}while(f=='y'||f=='Y');

}

voidmain()/*主函数*/

{

while

(1)

{

inta;

charf;

charch[10];

charnum[20]={"12345"};

printf("pleaseinputthesecret:

\n");

scanf("%s",ch);

if(strcmp(num,ch)==0)

a=1;

if(a==1)

{

printf("\npleaseenterinthetelproject!

\n");

f=getchar();

getchar();

break;

}

else

{

printf("\nthesecretiserror");

printf("pleaseinputtherightsecret");

}

}

while

(1)

switch(menu())

{

case'1':

append();break;

case'2':

display();break;

case'3':

search();break;

case'4':

modify();break;

case'5':

Delete();break;

case'6':

exit(0);break;

}

}

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 人文社科 > 法律资料

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1