下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、#include<iostream>#include<iomanip>#include<ctime>#include<string.h>#include<fstream>#include<stdio.h>#include<string>#include <conio.h>#include<windows.h>/ 包含 windows 的头文件使用获取现在系统时间的函数#pragma comment(lib, "winmm.lib")using namespace st
2、d;SYSTEMTIME now_time;/定义现在时间全局变量char user_name20;char user_code20;int Islogged=0;class productpublic:char name30;char code20;int date_year;int date_month;int date_day;char type40;double price;int amount;char producer50;int QuaGP_num;char QuaGP_T6;int SoldTime_y;int SoldTime_m;int SoldTime_d;int InT
3、ime_y;int InTime_m;int InTime_d;int hour;int minute;product *next;void Accept()/商品信息的接受函数cout<<" 请输入商品的名称: cin>>name;cout<<" 请输入商品的编号: "cin>>code;cout<<" 请输入商品的生产日期 (年-月-日):" scanf("%d-%d-%d",&date_year,&date_month,&date_da
4、y);cout<<" 请输入商品的价格 (人民币 /元): "cin>>price;cout<<" 请输入商品的数量 (标准单位:件 /斤 ): " cin>>amount;cout<<"请输入商品的保质期(单位为:天/年/月无保质期请输入“ 0无”):" cin>>QuaGP_num>>QuaGP_T;cout<<" 请输入商品的生产商: "cin>>producer;cout<<"
5、请输入商品的类型 (可有多种类型 ): "cin>>type;void Display()/商品信息的显示函数cout<<"cout<<" 商品名称 cout<<" 商品编号 cout<<" 商品价格 cout<<" 生产日期"<<endl;"<<setiosflags(ios:left)<<setw(25)<<name<<'t'"<<setw(2
6、5)<<code<<endl;"<<setiosflags(ios:left)<<setw(25)<<price<<'t' "<<date_year<<'-'<<date_month<<'-'<<date_day<<endl;if(SoldTime_y>0&&SoldTime_m>0&&SoldTime_d>0)cout<<
7、" 出 售 量: "<<setiosflags(ios:left)<<setw(25)<<amount<<'t'elsecout<<" 库 存 量:"<<setiosflags(ios:left)<<setw(25)<<amount<<'t'cout<<" 保 质 期: "if(QuaGP_num<=0)cout<<"无"<<e ndl
8、; elsecout<<QuaGP_num<<QuaGP_T<<endl;cout<<" 生 产 商: "<<setiosflags(ios:left)<<setw(25)<<producer<<'t' cout<<" 商品类型: "<<type<<endl;if(SoldTime_y>0&&SoldTime_m>0&&SoldTime_d>0)cout<
9、;<" 出 售 时 间 : "<<SoldTime_y<<'-'<<SoldTime_m<<'-'<<SoldTime_d<<" "<<hour<<':'elsecout<<" 入 存 时 间 : "<<InTime_y<<'-'<<InTime_m<<'-'<<InTime_d<
10、;<" "<<hour<<':'if(minute<10)cout<<'0'cout<<minute<<endl;cout<<""<<endl;void Store_in()/商品信息存入文本文件中的函数ofstream in("d:/ 库存商品 .txt",ios:app);in<<" 商品名称: "<<setiosflags(ios:left)<<s
11、etw(25)<<name<<'t'in<<" 商品编号: "<<code<<endl;in<<" 商品价格: "<<setiosflags(ios:left)<<setw(25)<<price<<'t'in<<" 生产日期: "<<date_year<<'-'<<date_month<<'-'
12、<<date_day<<endl;in<<" 库 存 量: "<<setiosflags(ios:left)<<setw(25)<<amount<<'t'in<<" 保 质 期: "if(QuaGP_num<0)in<<"无"<<endl;elsein<<QuaGP_num<<QuaGP_T<<endl;in<<" 生 产 商: &quo
13、t;<<setiosflags(ios:left)<<setw(25)<<producer<<'t'in<<" 商品类型: "<<type<<endl;in<<" 入存时间: "<<InTime_y<<'-'<<InTime_m<<'-'<<InTime_d<<""<<hour<<':
14、9;if(minute<10)in<<'0'in<<minute<<endl;in<<"*"<<endl;in.close();void in()/商品信息存入二进制文件中的函数ofstream fin(" 库存商品 1.txt",ios:binary|ios:app);fin.write(char *)this,sizeof(product);fin.close();void Sold_out()/售出商品信息存入文本文件中的函数ofstream in("d:/
15、 售出商品 .txt",ios:app);in<<" 商品名称: "<<setiosflags(ios:left)<<setw(25)<<name<<'t'in<<" 商品编号: "<<code<<endl;in<<" 商品价格: "<<setiosflags(ios:left)<<setw(25)<<price<<'t'in<<
16、;" 生产日期: "<<date_year<<'-'<<date_month<<'-'<<date_day<<endl;in<<" 出 售 量: "<<setiosflags(ios:left)<<setw(25)<<amount<<'t'in<<" 保 质 期: "if(QuaGP_num<=0)in<<" 无 &q
17、uot;<<endl;elsein<<QuaGP_num<<QuaGP_T<<endl;in<<" 生 产 商: "<<setiosflags(ios:left)<<setw(25)<<producer<<'t'in<<" 商品类型: "<<type<<endl;in<<" 出 售 时 间 : "<<SoldTime_y<<'-
18、9;<<SoldTime_m<<'-'<<SoldTime_d<<" "<<hour<<':'if(minute<10) in<<'0'in<<minute<<endl;in<<""<<endl;in.close();void out()/ 售出商品信息存入二进制文件中的函数ofstream fin(" 售出商品 1.txt",ios:binary|i
19、os:app); fin.write(char *)this,sizeof(product);fin.close();void Rewrite_in1();void Rewrite_in2();void Rewrite_out1();void Rewrite_out2();product *head=NULL,*head2=NULL;int Check_All(/*product *head*/)/查看库存商品的函数char choice;int count=0;product *ptr; ptr=head; if(ptr=NULL) cout<<"|1"<
20、;<endl;cout<<"|目前没有库存商品!请存入后再查看!I"<<endl;“cout<<"11"<<e ndl;cout<<" 请输入任意键返回查看菜单:cin>>choice; system("cls");elsewhile(ptr!=NULL) count+; ptr=ptr->next; system("cls"); ptr=head;cout<<" |1"<<en
21、dl;cout<<" | 共找到"<<setw(11)<<count<<"批库存商品| "<<endl;cout<<" 11"<<e ndl;count=0;while(ptr!=NULL)count+;10 批商if(count%10=1&&count!=1)/每一页显示品cout<<" 输入 Q 返回查看菜单 /输入其他任意键查看下一页:"cin>>choice;if(choice=
22、9;q'|choice='Q')system("cls");return 0;else system("cls");cout<<count<<'.'<<endl;ptr->Display(); ptr=ptr->next;cout<<""<<e ndl;cout<<" 以上即为所有库存商品!请输入任意键返回查看菜单: " cin>>choice;system("cls&q
23、uot;);return 0;int Check_Sold(/*product *head2*/)/ 查看已售出商品的函数int count=0;product *ptr;ptr=head2;char choice;if(ptr=NULL)cout<<"|1"<<endl;cout<<"|暂时没有出售过商品哦!I"<<endl;cout<<"11"<<e ndl;cout<<" 请输入任意键返回查看菜单: "cin>>c
24、hoice;system("cls");elsewhile(ptr!=NULL)count+;ptr=ptr->next;system("cls");cout<<" i1"<<endl;cout<<" | 共找到"<<setw(11)<<count<<"批已售出商品!| "<<endl;cout<<" 11"<<e ndl;count=0;ptr=head2;wh
25、ile(ptr!=NULL)count+;if(count%10=1&&count!=1)/每一页显示 10 批商品cout<<" 输入 Q 返回查看菜单 /输入其他任意键查看下一页:"cin>>choice;if(choice='q'|choice='Q')return 0;elsesystem("cls");cout<<count<<'.'<<endl;ptr->Display();ptr=ptr->next;cou
26、t<<""<<e ndl;cout<<" 以上即为所有已售出商品!请输入任意键返回查看菜单: " cin>>choice;system("cls");return 0;void Check_Type()char keyword20;int count=0;char choice;product *ptr;docout<<" 请输入您要搜索的商品类型: "cin>>keyword;ptr=head;while(ptr)if(strstr(ptr-
27、>type,keyword)count+;ptr=ptr->next;if(count=0)"<<endl;"<<endl;cout<<" |目前库存商品中没有"<<keyword<<"类型的商品!elsesystem("cls");cout<<" |共找到"<<count<<"批"<<keyword<<"类型的库存商品! count=0;ptr
28、=head;while(ptr)if(strstr(ptr->type,keyword)count+; cout<<count<<'.'<<endl; ptr->Display();ptr=ptr->next;ptr=head2;count=0;while(ptr) if(strstr(ptr->type,keyword) count+; ptr=ptr->next;if(count=0)"<<endl;"<<endl;cout<<" |目前售出商
29、品中没有"<<keyword<<"类型的商品!丨elsecout<<" |共找到"<<count<<"批"<<keyword<<"类型的售出商品! count=0;ptr=head2;while(ptr)if(strstr(ptr->type,keyword)count+; cout<<count<<'.'<<endl;ptr->Display();ptr=ptr->nex
30、t;cout<<" 是否继续按类型查看?是 Y/ 其他任意键返回查看菜单: " cin>>choice;if(choice!='y'&&choice!='Y')system("cls");break;while(1);int GetDay(product *p) / 将保质期化为天数int day;if(strstr(p->QuaGP_T," 年 ")|strstr(p->QuaGP_T,"year") day=365*(p->
31、;QuaGP_num);else if(strstr(p->QuaGP_T,"month")|strstr(p->QuaGP_T," 月 ") day=30*(p->QuaGP_num);else if(strstr(p->QuaGP_T,"day")|strstr(p->QuaGP_T," 天 ")|strstr(p->QuaGP_T," 日") day=p->QuaGP_num;else if(strstr(p->QuaGP_T,"w
32、eek")|strstr(p->QuaGP_T," 周 ") day=7*(p->QuaGP_num);return day;int Calcu_Day(product *p) / 计算现在时间与商品生产日期的天数差int day1,day2,month;day1=now_time.wDay;day2=p->date_day; for(month=1;month<now_time.wMonth;month+)if(month=4|month=6|month=9|month=11)day1+=30;else if(month=2)if(now
33、_time.wYear%4=0&&now_time.wYear%100!=0)|now_time.wYear%400=0) day1+=29;else day1+=28;else day1+=31;for(month=1;month<p->date_month;month+) if(month=4|month=6|month=9|month=11) day2+=30;else if(month=2) if(p->date_year%4=0&&p->date_year%100!=0)|p->date_year%400=0) day2+
34、=29;else day2+=28;elseday2+=31;day1+=365*(now_time.wYear-(p->date_year);return day1-day2-1;int IsOutdate(product *p) / 判断是否过期或即将过期int day1,day2;if(p->QuaGP_num<=0)return 0;/ 没有保质期返回 0day1=GetDay(p);if(day1<=0)return 0;day2=Calcu_Day(p)+1;if(day1<=day2)return -1;/返回 -1 表示过期else if(day1
35、>=365&&(day1-day2)<=day1/8) / 以下是根据不同的保质期长度返回有效天 数return day1-day2;else if(day1>=180&&(day1-day2)<=(day1/6)return day1-day2;else if(day1-day2)<=(day1/4)return day1-day2;elsereturn 0;/不过期返回 0int Add(/*product *head*/)/ 新增商品的函数system("color e5");char ch;bool ov
36、er=false;product *s_head,*ptr;s_head=new product;s_head->Accept();GetLocalTime(&now_time); s_head->InTime_y=now_time.wYear; s_head->InTime_m=now_time.wMonth; s_head->InTime_d=now_time.wDay; s_head->hour=now_time.wHour; s_head->minute=now_time.wMinute; s_head->Store_in();s_he
37、ad->in();s_head->next=NULL; ptr=s_head;while(1)cout<<" 该商品已入存! "<<endl;cout<<" 是否要继续存入商品?继续请输入 docin>>ch;if(ch='Q'|ch='q')over=true;break;else if(ch='y'|ch='Y')GetLocalTime(&now_time); ptr=new product; ptr->Accept();
38、 ptr->InTime_y=now_time.wYear; ptr->InTime_m=now_time.wMonth; ptr->InTime_d=now_time.wDay; ptr->hour=now_time.wHour; ptr->minute=now_time.wMinute; ptr->Store_in();ptr->in(); ptr->next=s_head; s_head=ptr; break;elsecout<<"a 亲!您输入选项我没有while(1);if(over)Y/ 返回主菜单请输入 Q:&
39、quot;(O o O)哦!请重新输入:break;if(head=NULL)head=s_head;elseptr=s_head;while(ptr->next!=NULL)ptr=ptr->next;ptr->next=head;head=s_head;Rewrite_in1();Rewrite_in2();system("cls");return 0;void Del_s(int mark)/ 删除商品信息的函数char del_word30;product *ptr,*ptr_b;char choice;bool back=false;if(mar
40、k=1)ptr=head;elseptr=head2;docout<<" 请输入要删除的商品的名称或编号: "cin>>del_word;dowhile(ptr) if(strcmp(del_word,ptr->name)=0|strcmp(del_word,ptr->code)=0) break;ptr_b=ptr;ptr=ptr->next;if(ptr)cout<<" 找到以下商品: "<<endl; ptr->Display();cout<<"是否删除&
41、quot;<<ptr->name<<"的信息?是Y/否N/寻找下一批 C:" docin>>choice;if(choice='y'|choice='Y')if(ptr=head)/删除的是库存商品的头结点head=head->next; delete ptr;else if(ptr=head2) /删除的是售出商品的头结点 head2=head2->next; delete ptr;else/删除的不是头结点ptr_b->next=ptr->next; delete ptr;
42、"<<endl;cout<<" 已成功删除该商品的信息!请按任意键返回删除菜单:cin>>choice;return;else if(choice='n'|choice='N')cout<<" 您已决定不删除该商品信息! 请按任意键返回删除菜单:cin>>choice;return;else if(choice='c'|choice='C')system("cls");ptr_b=ptr;ptr=ptr->next;
43、break;elsecout<<"a 亲!您的输入有误哦!请重新输入:while(1);elsecout<<"I'm sorry! 没有找到您输入的商品! "<<endl; cout<<" 是否重新输入?是 Y/ 其他任意键返回删除菜单: cin>>choice;if(choice!='y'&&choice!='Y')back=true;break;elsebreak;while(1);if(back)break;while(1);void
44、 Del()/删除商品信息的的菜单函数cout<<"char choice; bool back=false; dosystem("color 1e");cout<<"cout<<"I1"<<e ndl;I 删除菜单丨"<<endl;II II"<<endl;JUUl、cout<<" icout<<" | A.删除库存商品信息;丨、DI IUI,1B.删除已售出商品信息;丨1C.返回主菜单1"
45、;<<endl;cout<<" 111"<<endl;II<<endl;cout<<" 请选择:docin>>choice;if(choice='A'|choice='a')Del_s(1);system("cls");break;else if(choice='b'|choice='B')Del_s(2);system("cls");break;else if(choice='c&
46、#39;|choice='C')back=true;break;elsecout<<"a 亲!您的输入有误!请重新输入:while(1);if(back)Rewrite_in1();Rewrite_in2();Rewrite_out1();Rewrite_out2();system("cls");break;while(1);void Look(/*product *head*/)/查看商品过期信息product *ptr,*ptr_b;char choice;int count=0;bool have=false;ptr=head;w
47、hile(ptr!=NULL) if(IsOutdate(ptr)=-1) count+; ptr=ptr->next;if(count=0)cout<<" |1"<<endl;cout<<" |暂时没有过期商品!丨"<<endl;cout<<" 11"<<e ndl;elsehave=true;system("color 4f");cout<<" i1"<<endl;cout<<&
48、quot; | !共找到"<<setw(11)<<count<<"批过期商品!| "<<endl;cout<<" 11"<<e ndl;count=0;ptr=head; while(ptr!=NULL)if(IsOutdate(ptr)=-1)count+;cout<<count<<'.'<<endl;ptr->Display();ptr=ptr->next;count=0;ptr=head;while(pt
49、r!=NULL)if(IsOutdate(ptr)>0)count+;ptr=ptr->next;if(count=0)"<<endl;cout<<" |cout<<" |近期内没有未过期商品将过期! I"<<endl;cout<<" 11"<<e ndl;elsecout<<" i1"<<endl;cout<<" | 共找到"<<setw(11)<<c
50、ount<<"批即将过期商品!| "<<endl;cout<<" 11"<<e ndl;count=0;ptr=head;while(ptr!=NULL)if(IsOutdate(ptr)>0)count+;cout<<count<<'.'<<endl;ptr->Display();cout<<"!"<<ptr->name<<" 离 最 后 有 效 期 还 有 "
51、<<IsOutdate(ptr)<<" 天!"<<e ndl;ptr=ptr->next;if(have)docout<<"删除所有过期商品请输入D/返回主菜单请输入Q:"cin>>choice;if(choice='Q'|choice='q')break;else if(choice='d'|choice='D')cout<<"a确定要删除所有过期商品?确定输入Y/输入其他字符返回主菜单: "
52、cin>>choice;if(choice='y'|choice='Y')ptr=head;while(ptr!=NULL)if(IsOutdate(ptr)=-1)if(ptr=head)/删除头结点head=head->next;delete ptr;ptr=head;elseptr_b->next=ptr->next;delete ptr; ptr=ptr_b;ptr_b=ptr;ptr=ptr->next;"<<endl;cout<<"已成功删除所有过期商品!请按任意键返回主
53、菜单:cin>>choice;Rewrite_in1();Rewrite_in2();break;elsesystem("cls");break;elsecout<<"a 亲!输入有误!请重新输入! "<<endl;while(1);elsecout<<" 请输入任意键返回主菜单:"cin>>choice;system("cls");int Correct_s(char ch)/修改商品信息的函数product *ptr=NULL;char choice;
54、char keyword30;bool out=false;if(ch='a'|ch='A') ptr=head;else if(ch='b'|ch='B') ptr=head2;docout<<" 请输入要修改的商品的名称或编号cin>>keyword;dowhile(ptr) if(strcmp(keyword,ptr->name)=0|strcmp(keyword,ptr->code)=0) break;ptr=ptr->next;if(!ptr)cout<<&
55、quot; 对不起!没有该商品! "<<endl;cout<<" 换词查找 Y/ 其他键则返回修改菜单:cin>>choice; if(choice!='y'&&choice!='Y') system("cls");return 0;elsebreak;elsecout<<" 找到以下商品! "<<endl; ptr->Display();cout<<"是否修改?是 Y/查找下一批C/否则输入其他任意
56、键:";cin>>choice;if(choice='y'|choice='Y')cout<<"|1"<<e ndl;cout<<"|修改项目| "<<endl;cout<<" i111"<<endl;cout<<" |1.全部; |2.名称;|3.编号;| "<<endl;cout<<" |111"<<endl;cout&
57、lt;<" |4.价格; | 5.生产日期; |6.保质期;| "<<endl;cout<<" |111"<<endl;"<<endl;cout<<" | 7.数量; | 8.生产商;|9.类型| "<<endl;cout<<"docout<<" 请输入要修改的项目 (输入 0则不修改 ):" cin>>choice;switch(choice)case'1':cou
58、t<<" 请输入商品的全部新信息:"<<endl;ptr->Accept();break;case'2':cout<<" 请输入商品的新名称: " cin>>ptr->name;break;case'3':cout<<" 请输入商品的新编号: "cin>>ptr->code;break;case'4':cout<<" 请输入商品的新价格: "cin>>pt
59、r->price;break;case'5':cout<<"请输入商品的新生产日期(*-*-*):"scanf("%d-%d-%d",&ptr->date_year,&ptr->date_month,&ptr->date_day);break;case'6':cout<<"请输入商品的新保质期(单位为年/月/日 ):"cin>>ptr->QuaGP_num>>ptr->QuaGP_T;break;
60、case'7':cout<<"请输入商品的新数量:"cin>>ptr->amount;break;case'8':cout<<"请输入商品的新生产商:"cin>>ptr->producer;break;case'9':cout<<"请输入商品的新类型:"cin>>ptr->type;break;case'0':return 1;default:cout<<" 您
61、已选择不修改该商品信息! 请按任意键返回修 改菜单: "cin>>choice;return 1;Rewrite_in1();Rewrite_in2();Rewrite_out1();Rewrite_out2();cout<<" |1"<<endl;cout<<" I修改成功!I"<<endl;cout<<" |1"<<endl;cout<<" I继续修改?是输入Y/跟换商品修改输入C/输入其他则返回修改菜单: &quo
62、t;cin>>choice;if(choice='c'|choice='C')out=true;system("cls");break;else if(choice!='y'&&choice!='Y')system("cls");return 1;while(1);else if(choice='c'|choice='C')ptr=ptr->next;elsecout<<" 您已决定不修改该商品的信息!
63、请输入任意键返回修改菜单:Jcin>>choice;system("cls");return 0;if(out)break;while(1);while(1);int Correct(/*product *head*/)char choice;/修改商品信息的菜单函数dosystem("color 9f");cout<<"i1"<<e ndl;cout<<"|修改菜单I "<<endl;cout<<" ii111"<&
64、lt;endl;cout<<" | A.修改库存商品信息;I B.修改已售出商品信息;I C.返回主菜单I"<<endl;cout<<" 1111"<<endl;cout<<" 请选择: " docin>>choice;if(choice='c'|choice='C') system("cls"); return 0;else if(choice!='a'&&choice!=
65、9;A'&&choice!='b'&&choice!='B')cout<<"a 输入有误!请重新输入: continue;elseCorrect_s(choice);break;while(1);while(1);/查看所有可能商品的函数1 "<<e ndl; 查看菜单I "<<endl;1"<<e ndl;int Check(/*product *head,product *head2*/)int Search(/*product *
66、/);char choice;dosystem("color e1");cout<<"cout<<"cout<<"cout<<" i111 "<<endl;cout<<" | A.查看所有库存商品信息;丨B.查看已出售商品信息;丨C.按类型查看;"<<endl;cout<<" |111 "<<e ndl;cout<<" | D.搜索商品;| E.返回主菜单|
67、 "<<endl;cout<<" 111"<<e ndl;cout<<""<<e ndl;cout<<" 亲!请选择您的查看方式:C_input: cin>>choice;switch(choice)case'a':case'A':system("cls");Check_All(/*head*/);break;case'b': case'B':system("
68、cls");Check_Sold(/*head2*/);break;case'c': case'C':system("cls");Check_Type();continue;break;case'd': case'D':Search(/*head*/);break;case'E': case'e':system("cls");return 0;default:cout<<"a 亲!输入有误哦!请重新输入: "goto
69、C_input;while(1);int Read_in(/*product *head,product *head2*/)/ 从文件中读出库存商品数据的函数product *ptr=NULL,*ptr_b=NULL;fstream f;f.open(" 库存商品 1.txt",ios:in|ios:binary);if(!f)return 0;while(!f.eof()if(head=NULL)head=new product;f.read(char *)head,sizeof(product); if(head->amount<=0)delete head
70、;head=NULL;elsehead->next=NULL; ptr_b=ptr=head;elseptr=new product;f.read(char *)ptr,sizeof(product);if(ptr->amount<=0)delete ptr;ptr=NULL;elseptr->next=NULL;ptr_b->next=ptr; ptr_b=ptr;f.close();return 0;int Read_sold()/从文件中读出已售出商品数据的函数product *ptr,*ptr_b;fstream f;f.open(" 售出商品
71、1.txt",ios:in|ios:binary);if(!f)return 0;while(!f.eof()if(head2=NULL)head2=new product;f.read(char *)head2,sizeof(product);if(head2->amount<=0)delete head2;head2=NULL;elsehead2->next=NULL; ptr_b=ptr=head2;elseptr=new product;f.read(char *)ptr,sizeof(product);if(ptr->amount<=0)delete ptr;ptr=NULL;elseptr->next=NULL;ptr_b->next=ptr; ptr_b=ptr;f.close();return 0;int Search(/*product *head*/)/ 综合搜索函数char keyword30;product *ptr;int count=0;char choice;dosystem("color
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 街道规范性文件发布制度
- 宿舍拍照制度规范要求
- 玩具弓箭管理制度及规范
- 公文核稿规范制度要求
- 动火作业标准制度规范
- 军事营地场地制度规范
- 加工企业规范管理制度
- 药品说明书使用制度规范
- 中小学校听证制度规范
- 医院大门进出制度规范
- 2025年抗菌药物合理应用培训考核试题附答案
- 2025年度临床医生个人述职报告
- 2026年无锡商业职业技术学院单招职业技能笔试备考试题带答案解析
- 2026年初二物理寒假作业(1.31-3.1)
- GJB3243A-2021电子元器件表面安装要求
- 一类,二类,三类医疗器械分类目录
- 国开大学2022年01月2136《管理会计》期末考试参考答案
- 狼疮性肾炎中医诊疗方案
- 健康相关生存质量及其测量和评价课件
- 高标准农田项目监理大纲范本
- 口服液生产过程监控记录
评论
0/150
提交评论