![实验室设备管理系统设计[1]_第1页](http://file3.renrendoc.com/fileroot_temp3/2022-3/8/9ef2aef1-d6b3-404d-80ea-a42e3cccb2cc/9ef2aef1-d6b3-404d-80ea-a42e3cccb2cc1.gif)
![实验室设备管理系统设计[1]_第2页](http://file3.renrendoc.com/fileroot_temp3/2022-3/8/9ef2aef1-d6b3-404d-80ea-a42e3cccb2cc/9ef2aef1-d6b3-404d-80ea-a42e3cccb2cc2.gif)
![实验室设备管理系统设计[1]_第3页](http://file3.renrendoc.com/fileroot_temp3/2022-3/8/9ef2aef1-d6b3-404d-80ea-a42e3cccb2cc/9ef2aef1-d6b3-404d-80ea-a42e3cccb2cc3.gif)
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、1. 设计课题内容实验设备管理系统设计实验设备信息包括:设备编号,设备种类 (如:微机、打印机、扫描仪等等 ) ,设 备名称,设备价格,设备购入日期,是否报废,报废日期等。主要功能:1、能够完成对设备的录入和修改。2、对设备进行分类统计。3、设备的破损耗费和遗损处理。4、设备的查询。2. 应用程序的详细功能说明该实验设备管理系统采用纯 C 语言编写,使用者能实验该管理系统方便、直 观地对实验设备进行管理操作, 如对实验设备信息的录入、 实验设备信息的修改、 查询需要的目标设备的信息并对其进行统计等等。程序分两大系统,一是管理系统,二是查询系统。在管理系统中1. 建立链表储存设备信息 ::输入新
2、的设备信息,若当前设备管理系统中的设 备还未录入时, 建立新的链表来储存当前输入的设备信息, 并返回链表的头指针 指向第一个输入的设备的信息。2. 插入新的设备信息:输入新的设备信息,且当前设备管理系统中的链表非 空,则将新的设备信息插入链表,并返回链表头指针。3. 修改设备信息:若对已有的设备的信息需要修改,则按设备编号进行查找, 在成功找到该设备时,并选择需要修改的信息进行修改。4. 删除设备信息:若已有设备的信息错误或该设备不可用即已经报废,则要 对该条信息进行删除处理。5. 对设备进行遗损处理:当设备将要报废或已报废时则删除该设备的相关信 息,并通知。在查询系统中1. 查找设备信息:当
3、需要查看已有的设备信息对设备进行进一步的管理和维 护时,就可按设备编号、设备类型、设备名称、设备购入价格、设备购入时间、 设备报废时间、 设备是否可用对已有设备信息进行检索, 同时也可选择查看所有 设备信息。并且能在程序的根目录下的 result.txt 文件中查看信息。3. 输入数据类型、格式和内容控制输入实验设备的信息:设备编号为整形;设备类型为 10 个字符;设备名称为 20 个字符; 设备购入价格为浮点型,输出时保留一位小数; 设备购入时间为整形 设备报废时间为整形;设备是否可用为整形,记 0 为不可用, 1 为可用;4. 主要模块的算法描述4.1 简单算法描述1. 新的设备信息添加到
4、链表2. 删除错误和无用的设备信息3. 查找所需相关类型信息的设备信息4. 修改设备信息4.2流程图显示建立带头节点的链表将新的设备信息插入链表return NULLpt2=head head=head->n extfree(pt2)删除节点操作的算法流程图输入要删除的设备的编号numY链表是否为空head=NULLNYhead->num=num判断要删除的是否为头结点rNpt1=head pt2=head->next1rpt2!=NULLYpt->num=numpt1=pt2 pt2=pt1- >n extpt1- >n ext=pt2->n ext
5、 free(p t2)返回头指针head5. 结束语在课程设计中,我体会颇多,学到很多东西。我加强了对 C 的认识,复习 了自己以前的知识, 自己的逻辑思考能力也提高不少。 从而对 Microsoft VisualC+ 6.0开发环境又有了更深入的认识! 在这次课程设计中,我还总结了程序开 发的一些比较重要的步骤,比如需求分析、总体设计、数据库设计 (含概念设计、 逻辑设计、物理设计 )、程序模块设计 (含功能需求、用户界面设计、程序代码设 计与分析、运行结果 )、系统使用说明等。这次课程设计激发了我对编程的兴趣 和热情,让我从一个只懂理论变成了能做一些小型程序的人, 使我对编程更加热 爱了。
6、在这次的课程设计中我考虑了很多的东西, 产生了许多的问题, 通过对资 料的查找和筛选,我也找到了这些问题的解决办法,这使我有了很大的成就感, 让我对编写程序有了更浓烈的兴趣和信心。 相信在以后的设计中我会提交出更加 优秀的作品!6. 课程设计源程序清单#include <stdio.h>#include <stdlib.h>#include <string.h>#include <conio.h>#include <windows.h>#define SIZE sizeof(struct ShiyanEquip) struct Shi
7、yanEquipint num;char type10,name20; double price;int btime;int otime;int able;struct ShiyanEquip * next;/= 函数声明 struct ShiyanEquip * NewList();struct ShiyanEquip * InsertNode( struct ShiyanEquip *head, struct ShiyanEquip *newin);void SearchNode( struct ShiyanEquip *head);void SearchNode_num( struct
8、ShiyanEquip *head, int num);void SearchNode_type( struct ShiyanEquip *head, char type);void SearchNode_name( struct ShiyanEquip *head, char name); void SearchNode_price( struct ShiyanEquip *head, double price); void SearchNode_btime( struct ShiyanEquip *head, int btime); void SearchNode_otime( struc
9、t ShiyanEquip *head, int otime); void SearchNode_able( struct ShiyanEquip *head, int able);struct ShiyanEquip * Delete_num( struct ShiyanEquip *head, int num);void ChangeNode(struct ShiyanEquip *head,int num);void Dealwithpass( struct ShiyanEquip * head , int nowtime);struct ShiyanEquip * manage();v
10、oid search(struct ShiyanEquip * head);static count=0;int main(void)struct ShiyanEquip * head=NULL; char chose;doprintf("*Wlecome to use my program *nn");printf("*Hereprintf("*No.1: 管理系统printf("*No.2: 查询系统 printf("*No.#: 退出系统is theMenu *n");*n");*n");*n&qu
11、ot;);printf(" *scanf("%s",&chose); switch(chose) case '1':head=manage(); break;case '2': search(head); break;case '#': system("cls");printf("*Thankyou for using my program *nn"); exit(0);while (1);return 0;/= 管理系统 struct ShiyanEquip * ma
12、nage()char chose2;int num,nowtime;char type10,name20;double price;int btime;int otime;int able;struct ShiyanEquip * pcurr,* head;system("cls");do建立新实验器材管理清单*n");插入新的实验器材*n");删除目标器材信息*n");修改目标器材信息*n");遗损处理*n");返回上级菜单*n");管理系统 *n");system("cls");
13、printf(" * printf("*No.1: printf("*No.2: printf("*No.3: printf("*No.4: printf("*No.5: printf("*No.#: printf("*n"); scanf("%s",&chose2);switch(chose2) case '1':head=NewList(); break;case '2':pcurr=(struct ShiyanEquip *)malloc(
14、SIZE);printf("= 输入实验器材的编号 ,类型,名称,价格,购入时间,报废时间,是否可用 (0:报 废;1:可用 )=n");scanf("%d%s%s%lf%d%d%d",&num,type,name,&price,&btime,&otime,&able);pcurr->num=num;strcpy(pcurr->type,type); strcpy(pcurr->name,name); pcurr->price=price; pcurr->btime=btime; pc
15、urr->otime=otime; pcurr->able=able; head=InsertNode(head,pcurr); break;case '3':printf("= 请输入要删除的实验器材的编号 =:"); scanf("%d",&num); head=Delete_num(head,num);break;case '4':printf("= 请输入要修改的实验器材的编号 =:"); scanf("%d",&num);ChangeNode(h
16、ead,num); break;case '5':printf("= 请输入现在的日期 ="); scanf("%d",nowtime); Dealwithpass(head,nowtime); break;case '#':system("cls");return head;while ( 1);return head;struct ShiyanEquip * NewList()/= 新建链表 int num;char type10,name20;double price;int btime;int
17、otime;int able;struct ShiyanEquip * p,* head,* tail;head=tail=NULL;printf(" 录入实验器材的信息 n");printf("= 输入实验器材的编号 ,类型,名称,价格,购入时间 ,报废时间 ,是否可用 (0:报废;1: 可用 )=n");scanf("%d%s%s%lf%d%d%d",&num,type,name,&price,&btime,&otime,&able);while ( num != 0)p=(struct S
18、hiyanEquip *)malloc(SIZE);p->num=num;strcpy(p->type,type);strcpy(p->name,name);p->price=price;p->btime=btime;p->otime=otime;p->able=able;p->next = NULL;if (head = NULL)head = p;elsetail->next = p;tail = p;printf("= 可用 )=n");输入实验器材的编号 ,类型,名称,价格,购入时间 ,报废时间 ,是否可用 (0
19、:报废;1:scanf("%d%s%s%lf%d%d%d",&num,type,name,&price,&btime,&otime,&able);return head;struct ShiyanEquip * InsertNode (struct ShiyanEquip * head,struct ShiyanEquip *newin) /插入节点struct ShiyanEquip * pt1,* pt2;pt1=head;pt2=newin;if (head = NULL)head = pt2;head ->next =
20、NULL;count+;elsept2 ->next = pt1 ->next;pt1 ->next = pt2;count+;return head;删除节点struct ShiyanEquip * Delete_num( struct ShiyanEquip * head,int num)/= struct ShiyanEquip * pt1,* pt2;if ( head = NULL )return NULL;elseif ( head -> num = num)pt2 = head;head = head -> next;free(pt2);count-
21、;return head;elsept1 = head;pt2 = head -> next;if (pt2 != NULL)if (pt2 -> num = num)pt1 -> next = pt2 -> next;free(pt2);count-;elsept1 = pt2;pt2 = pt1 -> next;return head;void ChangeNode(struct ShiyanEquip *head,int num)/=更改节点char type10,name20;double price;int btime;int otime;int abl
22、e;int flag=0,chose4;struct ShiyanEquip *pt;if (head = NULL)printf("= return;抱歉 ,没有任何信息 !=n");sfor( pt = head; pt ; pt = pt -> next)if(pt->numr= num) printf("= 选择要修改的信息=n")printf("=1.编号=n");printf("=2.类型=n");printf("=3.名称=n");printf("=4.价格=
23、n");printf("=5.购入时间=n");printf("=6.报废时间=n");printf("=7.是否可用=n");switch(chose4)case 1:printf("= 请输入新的信息 =");scanf("%d",&num);pt->num=num;break;case 2:printf("= 请输入新的信息=");scanf("%s",&type);strcpy(pt->type,type);b
24、reak;case 3:printf("= 请输入新的信息 =");scanf("%s",&name);strcpy(pt->name,name);break;case 4:printf("= 请输入新的信息 =");scanf("%lf",&price);pt->price=price;break;case 5:printf("= 请输入新的信息 =");scanf("%d",&btime);pt->btime=btime;brea
25、k;case 6:printf("= 请输入新的信息 =");scanf("%d",&otime);pt->otime=otime;break;case 7:printf("= 请输入新的信息 =");scanf("%d",&able);pt->able=able;break; /查询系统void search(struct ShiyanEquip * head) int num;char type10,name20;double price; int btime;int otime;
26、int able; char chose3; system("cls"); do system("cls"); printf(" * printf("*No.1: printf("*No.2: printf("*No.3: printf("*No.4: printf("*No.5: printf("*No.6: printf("*No.7: printf("*No.8: printf("*No.#:按编号查找*n");查找统一价格*n"
27、);查找同一类型*n");查找同一名称*n");查找按购入日期*n");查找按报废日期*n");查找按是否可用*n");显示全部器材信息*n");返回上一级菜单*n");查询系统*n");*n");printf("*scanf("%s",&chose3);switch(chose3) case '1':printf("= 请输入要查找的编号 ="); scanf("%d",&num); SearchNod
28、e_num(head,num); break;case '2': printf("= 请输入想要查看的价格 ="); scanf("%lf",&price);SearchNode_price(head,price); break;case '3': printf("= 请输入想要查找的类型 ="); scanf("%s",type);SearchNode_type(head,type); break;case '4': printf("= 请输入想要
29、查看的名称 ="); scanf("%s",name);SearchNode_name(head,name); break;case '5': printf("= 请输入想要查看的购入时间 ="); scanf("%d",&btime); SearchNode_btime(head,btime); break;case '6': printf("= 请输入想要查看的报废时间 ="); scanf("%d",&otime);SearchNo
30、de_otime(head,otime);break;case '7':printf("= 请输入要查看是否可用的器材 (0:报废 ;1:可用 )="); scanf("%d",&able);SearchNode_able(head,able); break;case '8':SearchNode(head); break;case '#':system("cls"); return;while ( 1);void SearchNode_num( struct ShiyanEqu
31、ip *head, int num)/按编号查找FILE *fp;if ( fp = fopen("result.txt","w") = NULL)printf("= 文件打开错误 !=n");exit(0);int flag=0;struct ShiyanEquip *pt;if (head = NULL)printf("= 抱歉 ,没有任何信息 !=n");for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i);Sleep(1000);return;f
32、or( pt = head; pt ; pt = pt -> next) if(pt->num = num) flag=1;printf("=n");printf("=编号 %dn",pt->num);printf("=类型 %sn",pt->type);printf("=名称 %sn",pt->name);printf("=价格 %.1lfn",pt->price)printf("=购入时间 %dn",pt->btime);prin
33、tf("=报废时间 %dn",pt->otime);printf("=是否可用 %dn",pt->able);printf("=n");n");n",pt->num);n",pt->type);n",pt->name);n",pt->price);fprintf(fp," fprintf(fp,"= 编号 %d fprintf(fp,"= 类型 %s fprintf(fp,"= 名称 %s fprintf(fp
34、,"= 价格 %.1lffprintf(fp,"=购入时间 %dn",pt->btime);fprintf(fp,"=报废时间 %dn",pt->otime);fprintf(fp,"=是否可用 %dn",pt->able);fprintf(fp,"=n");for( int i=10;i>0;i-)Sleep(1000);printf("= 可以在文件 result.txt 中查看更多 =n"); if ( flag = 0)printf("= 抱歉
35、没有找到您所要查找的器材 =n"); for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i); Sleep(1000);if ( fclose(fp) )printf("= 文件关闭错误 =n"); exit(0); void SearchNode_type( struct ShiyanEquip *head, char type)/按类型查找FILE *fp;if ( fp = fopen("result.txt","w") = NULL)printf("
36、;= 文件打开错误 !=n");exit(0);int countS=0;struct ShiyanEquip *pt;if (head = NULL)printf("= 抱歉 ,没有任何信息 !=n");for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i); Sleep(1000); return;for( pt = head; pt ; pt = pt -> next)if (strcmp(pt->type,type) = 0)countS+;printf("=n")
37、;printf("=编号 %dn",pt->num);printf("=类型 %sn",pt->type);printf("=名称 %sn",pt->name);printf("=价格 %.1lfn",pt->price)printf("=购入时间 %dn",pt->btime);printf("=报废时间 %dn",pt->otime);printf("=是否可用 %dn",pt->able);printf(&q
38、uot;=n");fprintf(fp,"=n");fprintf(fp,"= 编号 %dn",pt->num);fprintf(fp,"= 类型 %sn",pt->type);fprintf(fp,"= 名称 %sn",pt->name);fprintf(fp,"= 价格 %.1lfn",pt->price)fprintf(fp,"= 购入时间 %dn",pt->btime);fprintf(fp,"= 报废时间 %dn&q
39、uot;,pt->otime);fprintf(fp,"= 是否可用 %dn",pt->able);fprintf(fp,"=n");for( int i=10;i>0;i-)Sleep(1000);if ( countS = 0)printf("= 抱歉没有找到您所要查找的器材 =n"); for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i);Sleep(1000);elseprintf("= 共查找到 %d 条信息 =n",coun
40、tS); printf("= 可以在文件 result.txt 中查看更多 =n"); fprintf(fp,"= 共查找到 %d 条信息 =n",countS);for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i);Sleep(1000);if ( fclose(fp) )printf("= 文件关闭错误 =n");exit(0);按名称查找void SearchNode_name( struct ShiyanEquip *head, char name)/ FILE *
41、fp;if ( fp = fopen("result.txt","w") = NULL)printf("= 文件打开错误 !=n"); exit(0);int countS=0;struct ShiyanEquip *pt;if (head = NULL)printf("= 抱歉 ,没有任何信息 !=n"); for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i); Sleep(1000);return;for( pt = head; pt ; pt =
42、pt -> next)if (strcmp(pt -> name,name) = 0)countS+;printf("=n");printf("=编号 %dn",pt->num);printf("=类型 %sn",pt->type);printf("=名称 %sn",pt->name);printf("=价格 %.1lfn",pt->price)printf("=购入时间 %dn",pt->btime);printf("=报
43、废时间 %dn",pt->otime);printf("=是否可用 %dn",pt->able);printf("=n");fprintf(fp,"=n");fprintf(fp,"= 编号 %dn",pt->num);fprintf(fp,"= 类型 %sn",pt->type);fprintf(fp,"= 名称 %sn",pt->name);fprintf(fp,"= 价格 %.1lfn",pt->pric
44、e)fprintf(fp,"= 购入时间 %dn",pt->btime);fprintf(fp,"= 报废时间 %dn",pt->otime);fprintf(fp,"= 是否可用 %dn",pt->able);fprintf(fp,"=n");for( int i=10;i>0;i-)Sleep(1000);if ( countS = 0)printf("= 抱歉没有找到您所要查找的器材 =n");for( int i=5;i>0;i-)printf("
45、%d 秒后请重新操作 n",i);Sleep(1000);elseprintf("= 共查找到 %d 条信息 =n",countS);printf("= 可以在文件 result.txt 中查看更多 =n"); fprintf(fp,"= 共查找到 %d 条信息 =n",countS);for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i);Sleep(1000);if ( fclose(fp) )printf("= 文件关闭错误 =n"); e
46、xit(0);void SearchNode_price( struct ShiyanEquip *head, double price)/ 按价格查找 FILE *fp;if ( fp = fopen("result.txt","w") = NULL)printf("= 文件打开错误 !=n"); exit(0);int countS=0;struct ShiyanEquip *pt;if (head = NULL)printf("= 抱歉 ,没有任何信息 !=n");for( int i=5;i>0;i-
47、)printf("%d 秒后请重新操作 n",i);Sleep(1000);return;for( pt = head; pt ; pt = pt -> next)if(pt -> price = price)countS+;printf("=n");printf("=编号 %dn",pt->num);printf("=类型 %sn",pt->type);printf("=名称 %sn",pt->name);printf("=价格 %.1lfn"
48、,pt->price)printf("=购入时间 %dn",pt->btime);n",pt->otime);n",pt->able);n");printf("= 报废时间 %d printf("= 是否可用 %d printf("=fprintf(fp,"=n");fprintf(fp,"= 编号 %dn",pt->num);fprintf(fp,"= 类型 %sn",pt->type);fprintf(fp,&quo
49、t;= 名称 %sn",pt->name);fprintf(fp,"= 价格 %.1lfn",pt->price)fprintf(fp,"= 购入时间 %dn",pt->btime);fprintf(fp,"= 报废时间 %dn",pt->otime);fprintf(fp,"= 是否可用 %dn",pt->able);fprintf(fp,"=n");for( int i=10;i>0;i-)Sleep(1000);if ( countS = 0)
50、printf("= 抱歉没有找到您所要查找的器材 =n");for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i);Sleep(1000);elseprintf("= 共查找到 %d 条信息 =n",countS);printf("= 可以在文件 result.txt 中查看更多 =n"); fprintf(fp,"= 共查找到 %d 条信息 =n",countS);for( int i=5;i>0;i-)printf("%d 秒后请重新操
51、作 n",i);Sleep(1000);if ( fclose(fp) )printf("= 文件关闭错误 =n");exit(0);void SearchNode_btime( struct ShiyanEquip *head, int btime)/按购入时间查找FILE *fp;if ( fp = fopen("result.txt","w") = NULL)printf("= 文件打开错误 !=n");exit(0);int countS=0;struct ShiyanEquip *pt;if (
52、head = NULL)printf("= 抱歉 ,没有任何信息 !=n");for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i);Sleep(1000);return;for( pt = head; pt ; pt = pt -> next)if(pt -> btime = btime)countS+;printf("=n");printf("=编号 %dn",pt->num);printf("=类型 %sn",pt->type
53、);printf("=名称 %sn",pt->name);printf("=价格 %.1lfn",pt->price)printf("=购入时间 %dn",pt->btime);printf("=报废时间 %dn",pt->otime);printf("=是否可用 %dn",pt->able);printf("=n");n");n",pt->num);n",pt->type);n",pt->
54、;name);fprintf(fp," fprintf(fp,"= 编号 %d fprintf(fp,"= 类型 %s fprintf(fp,"= 名称 %sfprintf(fp,"= 价格 %.1lfn",pt->price);fprintf(fp,"=购入时间%dn",pt->btime);fprintf(fp,"=报废时间%dn",pt->otime);fprintf(fp,"=是否可用%dn",pt->able);fprintf(fp,&quo
55、t;=n");for( int i=10;i>0;i-)Sleep(1000);if ( countS = 0)printf("= 抱歉没有找到您所要查找的器材 =n");for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i);Sleep(1000);elseprintf("= 共查找到 %d 条信息 =n",countS);printf("= 可以在文件 result.txt 中查看更多 =n"); fprintf(fp,"= 共查找到 %d 条信
56、息 =n",countS);for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i);Sleep(1000);if ( fclose(fp) )printf("= 文件关闭错误 =n");exit(0);void SearchNode_able( struct ShiyanEquip *head, int able)/按是否可用查找FILE *fp;if ( fp = fopen("result.txt","w") = NULL)printf("= 文件打开
57、错误 !=n");exit(0);int countS=0;struct ShiyanEquip *pt;if (head = NULL)printf("= 抱歉 ,没有任何信息 !=n");for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n",i);Sleep(1000);return;for( pt = head; pt ; pt = pt -> next)if(pt -> able = able)countS+;printf("=n");printf("=编号
58、%dn",pt->num);printf("=类型 %sn",pt->type);printf("=名称 %sn",pt->name);printf("=价格 %.1lfn",pt->price)printf("=购入时间 %dn",pt->btime);printf("=报废时间 %dn",pt->otime);printf("=是否可用 %dn",pt->able);printf("=n");fpri
59、ntf(fp,"=n");fprintf(fp,"= 编号 %dn",pt->num);fprintf(fp,"= 类型 %sn",pt->type);fprintf(fp,"= 名称 %sn",pt->name);fprintf(fp,"= 价格 %.1lfn",pt->price)fprintf(fp,"= 购入时间 %dn",pt->btime);fprintf(fp,"= 报废时间 %dn",pt->otime);fprintf(fp,"= 是否可用 %dn",pt->able);fprintf(fp,"=n");for( int i=10;i>0;i-)Sleep(1000);if ( countS = 0)printf("= 抱歉没有找到您所要查找的器材 =n"); for( int i=5;i>0;i-)printf("%d 秒后请重新操作 n&qu
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 阜新中考试题物理及答案
- 2025广告剧照授权合同模板
- 法语招聘考试题目及答案
- 东方人考试题及答案
- 中国碳酸钡项目创业计划书
- 中国电化学储能项目投资计划书
- 中国多元素白磷肥项目经营分析报告
- 中国氢燃料电池催化剂项目投资计划书
- 中国油墨产品项目投资计划书
- 大学会计考试题及答案
- 数字孪生应用技术员职业技能竞赛试题及答案
- 儿科护理学(高职)全套教学课件
- 食材配送服务方案(技术方案)
- 高中毕业生登记表填写样表(四川版)
- 2023年油田一线艰苦岗位员工退出实施办法
- T-JSTJXH 15-2022 装配式劲性柱-钢梁框架结构设计规程
- 第四章-技术美-(《美学原理》课件)
- 林木遗传育种学实验课件
- 消防安全工作考评奖惩制度
- 苏州大学医学部操作技能直接观察评估(DOPS)评分表
- 消费心理的情感和情绪过程课件
评论
0/150
提交评论