![C语言程序课程设计商品进销存管理系统程序_第1页](http://file4.renrendoc.com/view/648c82749407a81db32e0b91986bcd7f/648c82749407a81db32e0b91986bcd7f1.gif)
![C语言程序课程设计商品进销存管理系统程序_第2页](http://file4.renrendoc.com/view/648c82749407a81db32e0b91986bcd7f/648c82749407a81db32e0b91986bcd7f2.gif)
![C语言程序课程设计商品进销存管理系统程序_第3页](http://file4.renrendoc.com/view/648c82749407a81db32e0b91986bcd7f/648c82749407a81db32e0b91986bcd7f3.gif)
![C语言程序课程设计商品进销存管理系统程序_第4页](http://file4.renrendoc.com/view/648c82749407a81db32e0b91986bcd7f/648c82749407a81db32e0b91986bcd7f4.gif)
![C语言程序课程设计商品进销存管理系统程序_第5页](http://file4.renrendoc.com/view/648c82749407a81db32e0b91986bcd7f/648c82749407a81db32e0b91986bcd7f5.gif)
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
wordC语言程序课程设计商品进销存管理系统程序1/2word一题目与运行说明 商品进销存管理程序1、题目描述设计一个商品进销管理程序,该程序具有以下功能:(1)录入商品信息;(2)给定商品编号,修改该商品信息;(3)给定商品编号,删除该商品信息;(4)录入商品的进货和销售信息;(5)给定商品编号或商品名,查看该商品与库存信息;(6)统计功能:提供一些统计各类信息的功能。2、题目要求(1)按照分析、设计、编码、调试和测试过程完成应用程序;(2)学习并使用流程图等工具,并在撰写报告中使用;(3)程序的各项功能在程序运行时,以菜单形式选择并执行;(4)要求用户输入数据时,要给出清晰、明确的提示,包括:输入数据的内容、格式与其完毕方式等(5)所有的信息存储在一个文件或多个中,并实现文件读写操作。(6)程序中用链表存放商品与进销存信息并实现增删减功能。3、提示C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第1页。(1)提醒事件信息可以设计一个结构体类型C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第1页。(2)自己构思并增加的除规定功能之外的新功能,酌情加分。程序中主要变量Structgoods*head结构体指针Intn,kstructgoods{intnumber;charname[20];intshumu;floatjiage;structgoods*next;};intn,k;structgoods*head;等一些变量。数据输入的形式和输入值的X围字符不超过20位整型变量输入大于0C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第2页。浮点型变量也大于0C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第2页。商品编号为四位整数数据输入的形式按程序运行的提示操作※程序所能达到的功能与出错处理该程序具有以下功能:(1)录入商品信息;(2)给定商品编号,修改该商品信息;(3)给定商品编号,删除该商品信息;(4)录入商品的进货和销售信息;(5)给定商品编号或商品名,查看该商品与库存信息;(6)统计功能:提供一些统计各类信息的功能。二程序设计思路根据要求首先设计一个结构体类型,设计好界面,设计好主函数。C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第3页。程序各功能通过调用子函数来实现C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第3页。用switch来实现菜单的选择一切数据信息通通存在文件中,并实现文件读写操作。设计子函数来实现查询,保存,读取数据,删除等操作。【总体设计】商品管理系统商品管理系统数据录入数据修改删除商品销售查找进货图1系统功能模块图【详细设计】主函数主函数设计要求简洁,只提供局部提示语和函数的调用C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第4页。【程序】C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第4页。显示一系列功能选项显示一系列功能选项输入k,判断k是否是0~6?根据k的值调用各功能模块函数完毕开始k图2.主函数流程图具体设计如下:结构体设计structgoods{intnumber;charname[20];intshumu;floatjiage;structgoods*next;};C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第5页。主函数设计C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第5页。voidmain(){voidjieman();voidluru();structgoods*shuju();voidshanchu(structgoods*head);voidjinghuo(structgoods*head);voidxiaoshu(structgoods*head);voidxiugai(structgoods*head);voidchaxun(structgoods*head);structgoods*head=NULL;intk=0;system("cls");jieman();printf("请选择你要的功能键:");scanf("%d",&k);getchar();while(k!=0){head=shuju();switch(k){case1:luru();break;C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第6页。C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第6页。case2:xiugai(head);break;case3:chaxun(head);break;case4:xiaoshu(head);break;case5:jinghuo(head);break;case6:shanchu(head);break;case0:exit(0);default:printf("pleasetryagain!\n");}jieman();printf("请选择你要的功能键:");scanf("%d",&k);}}界面设计voidjieman(){printf("********************************************\n");printf("☆☆☆★★★欢迎进入商品管理系统★★★☆☆☆\n");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第7页。printf("**1*录入信息☆☆***************★★★☆☆☆\n");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第7页。printf("**2*修改信息☆☆***************★★★☆☆☆\n");printf("**3*查询信息☆☆***************★★★☆☆☆\n");printf("**4*销售信息☆☆***************★★★☆☆☆\n");printf("**5*进货信息☆☆***************★★★☆☆☆\n");printf("**6*删除信息☆☆***************★★★☆☆☆\n");printf("**0*退出系统☆☆***************★★★☆☆☆\n");printf("☆☆☆★★★欢迎进入商品管理系统★★★☆☆☆\n");printf("********************************************\n");}文件保存函数设计structgoods*baocun(structgoods*head){structgoods*shuju();structgoods*p=NULL;FILE*fp=NULL;charch='\0';getchar();printf("是否保存到文件?(y/n):");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第8页。ch=getchar();C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第8页。putchar(10);if(ch=='y'||ch=='Y'){fp=fopen("goods.txt","wb");p=head;if((fp==NULL)&&(p==NULL)){printf("读取数据失败!");exit(0);}while(p!=NULL){fprintf(fp,"%d\n%s\n%d\n%f\t",p->number,p->name,p->shumu,p->jiage);p=p->next;}printf("保存成功!\n");fclose(fp);C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第9页。return(head);C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第9页。}elseif(ch=='n'||ch=='N'){printf("信息未保存到文件!\n");head=shuju();return(head);}else{printf("sorry,pleasetryagain(y/n):");ch=getchar();putchar(10);}return(head);}数据读取函数设计structgoods*shuju(){intn=0;C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第10页。FILE*fp;C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第10页。structgoods*head=NULL,*p1,*p2;fp=fopen("goods.txt","rb");if(fp==NULL){printf("\nsorry,读取数据失败!\n");exit(0);}else{p1=p2=(structgoods*)malloc(LEN);fscanf(fp,"%d%s%d%f",&p1->number,p1->name,&p1->shumu,&p1->jiage);while(!feof(fp)){n++;if(n==1)head=p1;elsep2->next=p1;p2=p1;p1=(structgoods*)malloc(LEN);C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第11页。fscanf(C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第11页。}p2->next=NULL;fclose(fp);return(head);}}录入函数设计voidluru(){structgoods*shuju();structgoods*baocun(structgoods*head);structgoods*p1,*p2,*p3;head=shuju();p1=head;p2=(structgoods*)malloc(LEN);printf("请输入四位编号:");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第12页。scanf("%d",&p2->number);C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第12页。printf("请输入商品名:");scanf("%s",p2->name);printf("请输入商品数量:");scanf("%d",&p2->shumu);printf("请输入商品价格:");scanf("%f",&p2->jiage);if(p1==NULL){p1=p2;p2->next=NULL;baocun(p2);return;}while(p1!=NULL){p3=p1;p1=p1->next;}p3->next=p2;p2->next=NULL;baocun(head);}进货函数设计C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第13页。C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第13页。voidjinghuo(structgoods*head){structgoods*baocun(structgoods*head);intc;intp;structgoods*p1,*p2;system("cls");printf("请输入四位编号:");scanf("%d",&p);p1=head;while(p!=p1->number&&p1->next!=NULL){p2=p1;p1=p1->next;}if(p==p1->number){printf("\n商品编号\t商品名\t数量\t价格\n");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第14页。printf("%d\t\t%s\t\t%d\t\t%f\n",p1->number,p1->name,p1->shumu,p1->jiage);C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第14页。printf("请输入该商品经货个数:");scanf("%d",&c);p1->shumu=p1->shumu+c;printf("该商品经货个数:%d\n",p1->shumu);}baocun(head);}删除函数设计voidshanchu(structgoods*head){structgoods*p1,*p2;structgoods*baocun(structgoods*head);intp;system("cls");printf("请输入四位编号:");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第15页。scanf("%d",&p);C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第15页。p1=head;while(p!=p1->number&&p1->next!=NULL){p2=p1;p1=p1->next;}if(p==p1->number){printf("\n商品编号\t商品名\t数量\t价格\n");printf("%d\t\t%s\t\t%d\t\t%.2f\n",p1->number,p1->name,p1->shumu,p1->jiage);if(p1==head)head=p1->next;elsep2->next=p1->next;n=n-1;}printf("删除成功!\n");baocun(head);}查询函数设计voidchaxun(structgoods*head){inta,c,i=0;C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第16页。structgoods*p1,*p2;C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第16页。chart[20];printf("1*商品编号查询\n");printf("2*商品名字查询\n");printf("请选择你需要的功能键\n");scanf("%d",&a);getchar();if(a==1){printf("请输入四位编号:");scanf("%d",&c);getchar();while(c!=0&&i==0){p1=head;while(c!=p1->number&&p1->next!=NULL){p2=p1;p1=p1->next;}if(c==p1->number){printf("\n商品编号\t名字\t数目\t价格:\n");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第17页。printf("%d\t%s\t%d\t%.2f\n",p1->number,p1->name,p1->shumu,p1->jiage);i=1;}C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第17页。else{printf("系统中无该商品记录!pressenterreturn!\n");getchar();system("cls");return;}}}if(a==2&&i==0){system("cls");printf("请输入商品名字:");scanf("%s",&t);getchar();while(strcmp(t,"0")!=0&&i==0){p1=head;if(strcmp(t,p1->name)!=0&&p1->next!=NULL){p2=p1;p1=p1->next;}if(strcmp(t,p1->name)==0){printf("\n商品编号\t名字\t数目\t价格:\n");printf("%d\t%s\t%d\t%f\n",p1->number,p1->name,p1->shumu,p1->jiage);i=1;}C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第18页。C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第18页。}}}修改函数设计voidxiugai(structgoods*head){structgoods*baocun(structgoods*head);intp,i=0;structgoods*p1,*p2;system("cls");printf("请输入四位编号:");scanf("%d",&p);getchar();if(p!=0){p1=head;while(p!=p1->number&&p1->next!=NULL){p2=p1;p1=p1->next;}C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第19页。if(p==p1->number)C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第19页。{printf("\n商品编号\t名字\t数目\t价格:\n");printf("%d\t%s\t%d\t%f\n",p1->number,p1->name,p1->shumu,p1->jiage);printf("请输入要修改的新商品编号");scanf("%d",&p1->number);i=1;}if(i==1){printf("修改后新商品编号名字数目价格:\n");printf("%d%s%d%f",p1->number,p1->name,p1->shumu,p1->jiage);printf("修改成功!\n");baocun(head);}}C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第20页。}C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第20页。销售函数设计voidxiaoshu(structgoods*head){structgoods*baocun(structgoods*head);intc;intp;structgoods*p1,*p2;system("cls");printf("请输入四位编号:");scanf("%d",&p);getchar();p1=head;while(p!=p1->number&&p1->next!=NULL){p2=p1;C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第21页。p1=p1->next;C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第21页。}if(p==p1->number){printf("\n商品编号\t商品名\t数量\t价格\n");printf("%d\t\t%s\t\t%d\t\t%f\n",p1->number,p1->name,p1->shumu,p1->jiage);printf("请输入该商品售货个数:");scanf("%d",&c);p1->shumu=p1->shumu-c;printf("该商品经货个数:%d\n",p1->shumu);}baocun(head);}三程序清单C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第22页。#include<stdio.h>C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第22页。#include<string.h>#include<stdlib.h>#include<malloc.h>#defineLENsizeof(structgoods)structgoods结构体{intnumber;商品编号charname[20];商品名intshumu;商品数目floatjiage; 商品价格structgoods*next;};intn,k;全局变量structgoods*head;全局变量voidmain()主函数{voidjieman();界面函数声明voidluru();录入函数声明structgoods*shuju();数据读取函数声明voidshanchu(structgoods*head);删除函数声明voidjinghuo(structgoods*head);进货函数声明C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第23页。voidxiaoshu(structgoods*head);销售函数声明C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第23页。voidxiugai(structgoods*head);修改函数声明voidchaxun(structgoods*head);查询函数声明structgoods*head=NULL;intk=0;system("cls");jieman();printf("请选择你要的功能键:");scanf("%d",&k);getchar();while(k!=0){head=shuju();switch(k){case1:luru();break;case2:xiugai(head);break;case3:chaxun(head);break;case4:xiaoshu(head);break;case5:jinghuo(head);break;case6:shanchu(head);break;case0:exit(0);default:printf("pleasetryagain!\n");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第24页。}C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第24页。jieman();printf("请选择你要的功能键:");scanf("%d",&k);}}structgoods*baocun(structgoods*head)保存函数{structgoods*shuju();structgoods*p=NULL;FILE*fp=NULL;charch='\0';getchar();printf("是否保存到文件?(y/n):");判断是否保存ch=getchar();putchar(10);if(ch=='y'||ch=='Y'){C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第25页。fp=fopen("goods.txt","wb");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第25页。p=head;if((fp==NULL)&&(p==NULL)){printf("读取数据失败!");exit(0);}while(p!=NULL){fprintf(fp,"%d\n%s\n%d\n%f\t",p->number,p->name,p->shumu,p->jiage);p=p->next;}printf("保存成功!\n");fclose(fp);return(head);}elseif(ch=='n'||ch=='N'){printf("信息未保存到文件!\n");head=shuju();C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第26页。return(head);C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第26页。}else{printf("sorry,pleasetryagain(y/n):");ch=getchar();putchar(10);}return(head);}voidchaxun(structgoods*head)查询函数{inta,c,i=0;structgoods*p1,*p2;chart[20];printf("1*商品编号查询\n");printf("2*商品名字查询\n");printf("请选择你需要的功能键\n");scanf("%d",&a);getchar();C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第27页。if(a==1)C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第27页。{printf("请输入四位编号:");scanf("%d",&c);getchar();while(c!=0&&i==0){p1=head;while(c!=p1->number&&p1->next!=NULL)查找商品{p2=p1;p1=p1->next;}if(c==p1->number){printf("\n商品编号\t名字\t数目\t价格:\n");printf("%d\t%s\t%d\t%.2f\n",p1->number,p1->name,p1->shumu,p1->jiage);i=1;}else{printf("系统中无该商品记录!pressenterreturn!\n");getchar();system("cls");return;}}}if(a==2&&i==0){C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第28页。system("cls");printf("请输入商品名字:");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第28页。scanf("%s",&t);getchar();while(strcmp(t,"0")!=0&&i==0){p1=head;if(strcmp(t,p1->name)!=0&&p1->next!=NULL) 查找商品{p2=p1;p1=p1->next;}if(strcmp(t,p1->name)==0){printf("\n商品编号\t名字\t数目\t价格:\n");printf("%d\t%s\t%d\t%f\n",p1->number,p1->name,p1->shumu,p1->jiage);i=1;}else{printf("系统中无该商品记录!pressenterreturn!\n");getchar();system("cls");return;}}}}C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第29页。voidjinghuo(structgoods*head)进货函数C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第29页。{structgoods*baocun(structgoods*head);intc;intp;structgoods*p1,*p2;system("cls");printf("请输入四位编号:");scanf("%d",&p);p1=head;while(p!=p1->number&&p1->next!=NULL)查找商品{p2=p1;p1=p1->next;}if(p==p1->number){printf("\n商品编号\t商品名\t数量\t价格\n");printf("%d\t\t%s\t\t%d\t\t%f\n",p1->number,p1->name,p1->shumu,p1->jiage);printf("请输入该商品经货个数:");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第30页。C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第30页。p1->shumu=p1->shumu+c;printf("该商品经货个数:%d\n",p1->shumu);}baocun(head);保存数据}voidluru(){structgoods*shuju();调用函数structgoods*baocun(structgoods*head);structgoods*p1,*p2,*p3;head=shuju();p1=head;p2=(structgoods*)malloc(LEN);printf("请输入四位编号:");scanf("%d",&p2->number);printf("请输入商品名:");scanf("%s",p2->name);C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第31页。printf("请输入商品数量:");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第31页。scanf("%d",&p2->shumu);printf("请输入商品价格:");scanf("%f",&p2->jiage);if(p1==NULL){p1=p2;p2->next=NULL;baocun(p2);return;}while(p1!=NULL){p3=p1;p1=p1->next;}p3->next=p2;p2->next=NULL;baocun(head);保存数据}voidshanchu(structgoods*head)删除函数{structgoods*p1,*p2;structgoods*baocun(structgoods*head);intp;C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第32页。system("cls");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第32页。printf("请输入四位编号:");scanf("%d",&p);p1=head;while(p!=p1->number&&p1->next!=NULL)查找商品{p2=p1;p1=p1->next;}if(p==p1->number){printf("\n商品编号\t商品名\t数量\t价格\n");printf("%d\t\t%s\t\t%d\t\t%.2f\n",p1->number,p1->name,p1->shumu,p1->jiage);if(p1==head)head=p1->next;elsep2->next=p1->next;n=n-1;}printf("删除成功!\n");baocun(head);}structgoods*shuju()数据读取函数{intn=0;C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第33页。FILE*fp;C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第33页。structgoods*head=NULL,*p1,*p2;fp=fopen("goods.txt","rb");if(fp==NULL){printf("\nsorry,读取数据失败!\n");exit(0);}else{p1=p2=(structgoods*)malloc(LEN);fscanf(fp,"%d%s%d%f",&p1->number,p1->name,&p1->shumu,&p1->jiage);while(!feof(fp)){n++;if(n==1)head=p1;elsep2->next=p1;p2=p1;p1=(structgoods*)malloc(LEN);C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第34页。fscanf(fp,"%d%s%d%f",&p1->number,p1->name,&p1->shumu,&p1->jiage);C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第34页。}p2->next=NULL;fclose(fp);return(head);}}voidjieman()界面函数{printf("********************************************\n");printf("☆☆☆★★★欢迎进入商品管理系统★★★☆☆☆\n");printf("**1*录入信息☆☆***************★★★☆☆☆\n");printf("**2*修改信息☆☆***************★★★☆☆☆\n");printf("**3*查询信息☆☆***************★★★☆☆☆\n");printf("**4*销售信息☆☆***************★★★☆☆☆\n");printf("**5*进货信息☆☆***************★★★☆☆☆\n");printf("**6*删除信息☆☆***************★★★☆☆☆\n");printf("**0*退出系统☆☆***************★★★☆☆☆\n");printf("☆☆☆★★★欢迎进入商品管理系统★★★☆☆☆\n");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第35页。printf("********************************************\n");C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第35页。}voidxiaoshu(structgoods*head)销售函数{structgoods*baocun(structgoods*head);intc;intp;structgoods*p1,*p2;system("cls");printf("请输入四位编号:");scanf("%d",&p);getchar();p1=head;while(p!=p1->number&&p1->next!=NULL)查找商品{p2=p1;p1=p1->next;}if(p==p1->number)C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第36页。{C语言程序课程设计商品进销存管理系统程序全文共46页,当前为第36页。printf("\n商品编号\t商品名\t数量\t价格\n");printf("%d\t\t%s\t\t%d\t\t%f\n",p1->number,p1->name,p1->shumu,p1->jiage);printf("请输入该商品售货个数:");scanf("%d",
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025-2030全球电子镇痛泵行业调研及趋势分析报告
- 2025年全球及中国正照式CMOS制冷相机行业头部企业市场占有率及排名调研报告
- 2025-2030全球生活用纸头胶行业调研及趋势分析报告
- 2025年全球及中国奥美沙坦酯氢氯噻嗪片行业头部企业市场占有率及排名调研报告
- 2025-2030全球帆布绘画套件行业调研及趋势分析报告
- 2025年全球及中国防静电HPL架空地板行业头部企业市场占有率及排名调研报告
- 2025-2030全球ADAS清洗系统行业调研及趋势分析报告
- 2025年全球及中国TGV激光微孔设备行业头部企业市场占有率及排名调研报告
- 2025年全球及中国导热平台和导热板行业头部企业市场占有率及排名调研报告
- 2025年全球及中国13C-尿素呼气测试试剂盒行业头部企业市场占有率及排名调研报告
- 2024-2025银行对公业务场景金融创新报告
- 2025届郑州市高三一诊考试英语试卷含解析
- 《我国个人所得税制下税收征管问题研究》
- 肿瘤中医治疗及调养
- 组长竞选课件教学课件
- 2022年公务员多省联考《申论》真题(辽宁A卷)及答案解析
- 2024 ESC慢性冠脉综合征指南解读(全)
- 北师大版四年级下册数学第一单元测试卷带答案
- 术后肺炎预防和控制专家共识解读课件
- 中石化高级职称英语考试
- 小学五年级英语阅读理解(带答案)
评论
0/150
提交评论