版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、商品出境管理系統(tǒng)C語言課程設(shè)計(jì)2013屆物聯(lián)網(wǎng)工程學(xué)院 自動化(2)班 李俊年本系統(tǒng)所實(shí)現(xiàn)的功能本系統(tǒng)由C語言編寫而成,主要實(shí)現(xiàn)對出境商品的管理。系統(tǒng)主要內(nèi)容為商品的名稱、數(shù)量、總重量(噸)、商品性質(zhì)(金屬制品、肉制品、植物制品、瓷制品等)和出境時(shí)間(年月日),可實(shí)現(xiàn)從外部讀入數(shù)據(jù)、數(shù)據(jù)輸入、添加、查詢、刪除、排序(數(shù)量和總重量)以及對所輸入的數(shù)據(jù)的保存等功能。本系統(tǒng)所用程序(一、結(jié)體、數(shù)構(gòu)組):#include#include#include#include#define N 200/頭文件定義/*-*/typedef struct shangpin/構(gòu)造結(jié)構(gòu)體int num; /商品序號c
2、har name50; /商品名稱int number; /單位int weight; /總噸數(shù)char nature50; /物品性質(zhì)char time20; /出境時(shí)間Shangpin;Shangpin zhouN;int length;/返回值int i;int find(Shangpin t,int n,char *s );/查找函數(shù)聲明int menue_select();/菜單選擇函數(shù)聲明int input(Shangpin t);/輸入函數(shù)聲明void output(Shangpin t,int n);/顯示函數(shù)聲明int add(Shangpin t ,int n);/添加函數(shù)
3、聲明void search(Shangpin t,int n);/查找函數(shù)聲明void print(Shangpin t);/打印函數(shù)聲明void sort(Shangpin t ,int n);/排序函數(shù)聲明void change(Shangpin t ,int n );/修改函數(shù)聲明void save(Shangpin t ,int n);/保存函數(shù)聲明int Delete(Shangpin t ,int n);/刪除函數(shù)聲明int load(Shangpin t);/讀入函數(shù)聲明/*-調(diào)用函數(shù)的聲明-*/void main()/主函數(shù)內(nèi)容doswitch(menue_select()ca
4、se 0:length=load(zhou);getch();system(cls);break;case 1:length=input(zhou);system(cls);break;case 2:output(zhou,length); getch();system(cls);break;case 3:length=add(zhou,length); getch(); break; case 4:length=Delete(zhou,length);getch(); system(cls);break;case 5:search(zhou,length);getch();system(cl
5、s);break;case 6:sort(zhou,length);getch();system(cls);break;case 7:change(zhou,length);getch();system(cls);break;case 8:save(zhou,length); getch();system(cls);break;case 9:exit(0);while(1);/*-*/*讀入函數(shù),參數(shù)為結(jié)構(gòu)體數(shù)組*/int load(Shangpin t) int i,n; FILE *fp; /*指向文件的指針*/ if(fp=fopen(record.txt,r+)=NULL)/*打開文件
6、*/ printf(不能打開文件n); /*不能打開*/ exit(0); for(i=0;in;i+) fscanf(fp,%6d %12s %10d %10d %16s %16s,&ti.num,,&ti.number,&ti.weight,ti.nature,ti.time); /*按格式讀入記錄*/ fclose(fp); /*關(guān)閉文件*/ printf(你已經(jīng)從文件中正確讀入數(shù)據(jù)!n); /*顯示讀入成功*/ getch();/任意鍵繼續(xù) return n; /*返回記錄數(shù)*/*-菜單選擇函數(shù)-*/int menue_select()char s80;int c;pri
7、ntf(ttt歡迎使用商品出境管理系統(tǒng)n);printf(n);printf(ttt 0. 讀取已有商品信息nn);printf(ttt 1. 輸入商品信息nn);printf(ttt 2. 顯示全部商品信息nn); printf(ttt 3. 添加商品nn);printf(ttt 4. 刪除商品nn);printf(ttt 5. 查找商品nn);printf(ttt 6. 按商品信息排序nn);printf(ttt 7. 改變商品信息nn);printf(ttt 8. 保存文件nn);printf(ttt 9. 退出系統(tǒng)nn);printf(n);SIGN:printf(請輸入您的選擇序號:
8、);scanf(%s,&s);c=atoi(s);/把字符串轉(zhuǎn)化為整型if(c9)printf(輸入不合法);goto SIGN; /無條件轉(zhuǎn)向return c;/*-輸入商品信息函數(shù)-*/int input(Shangpin t) int i,n; system(cls); printf(tt 輸入商品信息 n); printf( n請輸入商品個(gè)數(shù)(n200):n); scanf(%d,&n); /*接收輸入系統(tǒng)的商品數(shù)量*/ system(cls); getch();/任意鍵繼續(xù) for(i=0;in;i+) printf(請輸入第%d個(gè)商品的信息n,i+1);printf(商品名稱/ 數(shù)
9、量/ 總重量(噸)/ 商品性質(zhì)(植物/肉/金屬/塑料)/ 出境時(shí)間):n);scanf(%s %d %d %s %s,,&ti.number,&ti.weight,ti.nature,ti.time);zhoui.num=i+1;/商品序號增加1位printf(-n); return n;/*顯示全部輸入記錄的函數(shù),參數(shù)為結(jié)構(gòu)體和商品序號*/void output(Shangpin t,int n) int i; system(cls); printf(n); printf(ttt商品信息n); printf(-n); printf( 序號 商品名稱 數(shù)量 總重量(噸) 物品性質(zhì)
10、 出境時(shí)間 n); printf(-n); for(i=0;in;i+) printf(%6d %12s %10d %10d %16s %16sn, ti.num,,ti.number,ti.weight,&ti.nature,ti.time); getch();/任意鍵繼續(xù) if(i+1)%10=0) /*判斷輸出是否達(dá)到10條記錄*/ printf(按任意鍵繼續(xù).n); /*提示信息*/ getch(); /任意鍵繼續(xù) printf(*結(jié)束*n);/*插入函數(shù),參數(shù)為結(jié)構(gòu)體數(shù)組和記錄數(shù)*/int add(Shangpin t,int n)printf(請輸入一條記錄n);pr
11、intf(商品名稱/ 數(shù)量/ 總重量(噸)/ 商品性質(zhì)(植物/肉/金屬/塑料)/ 出境時(shí)間):n);scanf(%s %d %d %s %s,,&tn.number,&tn.weight,tn.nature,tn.time);zhoun.num=n+1;printf(插入成功!);n=n+1;return n; /*查找函數(shù),參數(shù)為記錄數(shù)組和記錄條數(shù)以及商品名稱s */int find(Shangpin t,int n,char *s) int i; for(i=0;in-1) /*如果in-1超過了數(shù)組的長度*/ printf(沒有要?jiǎng)h除的記錄n); /*顯示沒找到要?jiǎng)h除的記錄
12、*/ else print(ti); /*調(diào)用輸出函數(shù)顯示該條記錄信息*/ printf(確定刪除嗎?(1/0)n); /*確認(rèn)是否要?jiǎng)h除*/ scanf(%d,&ch); /*輸入一個(gè)整數(shù)0或1*/ if(ch=1) /*如果確認(rèn)刪除整數(shù)為1*/ for(j=i+1;jn-1) /*如果整數(shù)i值大于n-1,說明沒找到*/ printf(沒有找到你所找的商品!n); else print(ti); /*找到,調(diào)用顯示函數(shù)顯示記錄*/ getch();/任意鍵繼續(xù)void sort(Shangpin t,int n) /*排序函數(shù)*/ int i,j,a; Shangpin temp; syst
13、em(cls); printf(-排序信息-n); printf(n-1.數(shù)量 2.總重量 n); printf(n-請選擇排序類別(1/2):n); /*選擇按什么排序*/ getch();/任意鍵繼續(xù) scanf(%d,&a); switch(a) case 1: for(i=0;in-1;i+)for(j=i+1;jn;j+)if(tj.numberti.number) temp=ti;ti=tj;tj=temp; break; /*用選擇法排序*/ case 2: for(i=0;in-1;i+)for(j=i+1;jn;j+)if(tj.weightti.weight) temp=t
14、i;ti=tj;tj=temp; break; /*用選擇法排序*/ printf(序號 商品名稱 數(shù)量 總重量(噸) 物品性質(zhì) 出境時(shí)間 nn); for(i=0;in-1) /*如果in-1超過了數(shù)組的長度*/ printf(沒有找的要修改的記錄n); /*顯示沒找到要修改的記錄*/ else print(ti); /*調(diào)用輸出函數(shù)顯示該條記錄信息*/ printf(確定修改嗎(1/0)?n); scanf(%d,&j);getch();/任意鍵繼續(xù) switch(j) case 0: break; case 1:printf(-n);printf( 1.商品名稱 2.數(shù)量 3.總重量(噸
15、) 4.物品性質(zhì) 5.出境時(shí)間6.退出 n);printf( 選擇要修改的項(xiàng)目(1/2/3/4/5/6) :n); /*選擇要找修改的內(nèi)容*/scanf(%d,&k);switch(k)case 1: printf( 請輸入商品名稱: ); scanf(%s,); break;case 2 : printf( 請輸入數(shù)量: ); scanf(%d,&ti.number); break;case 3 : printf( 請輸入總重量(噸): ); scanf(%d,&ti.weight); break;case 4 : printf( 請輸入物品性質(zhì): ); scanf(%s,ti
16、.nature); break;case 5 : printf(請輸入出境時(shí)間: ); scanf(%s,ti.time); break;case 6 :break;default: break; void save(Shangpint,int n)int i;FILE *fp;/指向文件的指針if(fp=fopen(record.txt,w+)=NULL)/打開文件,并判斷打開是否正常printf(n沒有打開n);exit(0);printf(n 保存文件n);getch();/任意鍵繼續(xù)fprintf(fp,rn);for(i=0;in;i+)fprintf(fp,%6d %12s %10
17、d %10d %16s %16sn, ti.num,,ti.number,ti.weight,&ti.nature,ti.time); fprintf(fp,rn); /*將換行符號寫入文件*/ getch();/任意鍵繼續(xù)printf(*保存成功*n);fclose(fp);本系統(tǒng)所用程序(二、結(jié)構(gòu)體、鏈表):#include#include#include/*頭文件定義*/typedef struct lnode/構(gòu)造結(jié)構(gòu)體char name50; /商品名稱int number; /單位int weight; /總噸數(shù)char nature50; /物品性質(zhì)char tim
18、e20; /出境時(shí)間struct lnode *next;Lnode;Lnode *first=NULL;FILE *fp;int num; /商品序號int data;char temp10;void Detect(); /讀取文件函數(shù)聲明,顯示文件是否存在void Print(); /主頁顯示函數(shù)聲明void Answer(); /響應(yīng)選擇函數(shù)聲明void Input(); /文件讀入函數(shù)聲明void Output(); /文件輸出函數(shù)聲明void Display(); /顯示信息函數(shù)聲明void Add(); /添加數(shù)據(jù)函數(shù)聲明void Change(); /修改信息函數(shù)聲明void D
19、elete(); /刪除信息函數(shù)聲明void Find(); /查找信息函數(shù)聲明void Sort(); /排序信息函數(shù)聲明void Exit(); /退出函數(shù)聲明void Seek_str(int m); /按字符查找用函數(shù)聲明void Seek_num(int m); /按數(shù)字查找用函數(shù)聲明Lnode *Get_Lnode(int pos); /返回第pos個(gè)節(jié)點(diǎn),pos從零開始/*主函數(shù)*/int main()Detect();while(1)Print();Answer();return 0;/*檢測文件函數(shù)*/void Detect()int i;Lnode *p1;Lnode *p
20、2;if(fp=fopen(data.txt,r)=NULL)/若沒有數(shù)據(jù)文件,新建一個(gè)數(shù)據(jù)文件data=0;fp=fopen(data.txt,w);num=0;fprintf(fp,%s %dnn,商品數(shù)量:,num);fprintf(fp,%15s %15s %10s %15s %15sn,商品名稱,商品數(shù)量,總重量,商品性質(zhì),出境日期);fclose(fp);elsedata=1;fscanf(fp,%s %d %s %s %s %s %s,temp,&num,temp,temp,temp,temp,temp);for(i=0;iname,&p1-number,&p1-weight,p
21、1-nature,p1-time);p1-next=NULL;if(first=NULL)first=p1;elsep2-next=p1;p2=p1;fclose(fp);/* *主頁顯示函數(shù)*/void Print()printf(*商品出境管理系統(tǒng)*nnn);printf(tttt1.導(dǎo)入信息nn);printf(tttt2.導(dǎo)出信息nn);printf(tttt3.顯示所有商品信息nn);printf(tttt4.添加商品nn);printf(tttt5.修改商品nn);printf(tttt6.刪除商品數(shù)據(jù)nn);printf(tttt7.查找商品nn);printf(tttt8.按商
22、品信息排序nn);printf(tttt0.退出并保存nn);printf(請輸入要執(zhí)行的功能選項(xiàng)號碼:);if(!data)printf((數(shù)據(jù)文件不存在,請導(dǎo)入數(shù)據(jù)文件或重新寫入數(shù)據(jù)));data=1;/*選擇函數(shù)*/void Answer()int i;/功能選項(xiàng)scanf(%d,&i);while(i8)/防止輸入有誤printf(您輸入的號碼有誤,請輸入正確的選項(xiàng)號碼(0-8之間):);scanf(%d,&i);switch(i)case 1:Imput();break;case 2:Output();break;case 3:Display();break;case 4:Add()
23、;break;case 5:Change();break;case 6:Delete();break;case 7:Find();break;case 8:Sort();break;case 0:Exit();break;/*1導(dǎo)入數(shù)據(jù)函數(shù)*/void Input()char data_id200;int i;Lnode *p1;Lnode *end;printf(*導(dǎo)入數(shù)據(jù)*nn);doprintf(輸入 1 進(jìn)行導(dǎo)入數(shù)據(jù);輸入 0 返回:);scanf(%d,&i);if(i)printf(n請輸入數(shù)據(jù)存放的完整路徑地址(包含文件名稱):n);scanf(%s,data_id);if(fp
24、=fopen(data_id,r)!=NULL)fscanf(fp,%s %d %s %s %s %s %s,temp,&num,temp,temp,temp,temp,temp);first=NULL;for(i=0;iname,&p1-number,&p1-weight,p1-nature,&p1-time);p1-next=NULL;if(first=NULL)first=p1;elseend-next=p1;end=p1;fclose(fp);printf(n數(shù)據(jù)導(dǎo)入成功!nn);elseprintf(您輸入的地址有誤!nn);printf(*nn);while(i);/*2導(dǎo)出數(shù)據(jù)函
25、數(shù)*/void Output()char data_id200;int i;Lnode *p1;printf(*導(dǎo)出數(shù)據(jù)*n); doprintf(輸入 1 進(jìn)行導(dǎo)出數(shù)據(jù);輸入 0 返回:);scanf(%d,&i);if(i)printf(n請輸入數(shù)據(jù)存放的完整路徑地址(包含文件名稱):n);scanf(%s,data_id);if(fp=fopen(data_id,w)!=NULL)fprintf(fp,%s %dnn,商品種類:,num);fprintf(fp,%-15s %-15s %-10s %-15s %15sn,商品名稱,商品數(shù)量,總重量,商品性質(zhì),出境日期);p1=first;
26、while(p1-next!=NULL)fprintf(fp,%-15s %-15d %-15d %-15s %-15sn,p1-name,p1-number,p1-weight,p1-nature,p1-time);p1=p1-next;fprintf(fp,%-15s %-15d %-15d %-15s %-15sn,p1-name,p1-number,p1-weight,p1-nature,p1-time);fclose(fp);printf(n數(shù)據(jù)導(dǎo)出成功!nn);printf(導(dǎo)出數(shù)據(jù)的地址為“%s”nn,data_id);elseprintf(您輸入的地址有誤nn);printf(
27、*nn);while(i);/*3顯示信息函數(shù)*/void Display()int i;Lnode *p1;printf(*顯示商品信息*n);printf(%s %dnn,商品種類:,num);printf(%-15s %-15s %-10s %-15s %15sn,商品名稱,商品數(shù)量,總重量,商品性質(zhì),出境日期n);p1=first;if(first!=NULL)while(p1-next!=NULL)printf(%-15s %-15d %-15d %-15s %-15sn,p1-name,p1-number,p1-weight,p1-nature,p1-time);p1=p1-nex
28、t;printf(%-15s %-15d %-15d %-15s %-15sn,p1-name,p1-number,p1-weight,p1-nature,p1-time);printf(n*n);do/返回主頁printf(n輸入 0 返回:);scanf(%d,&i);while(i);/*4添加信息函數(shù)*/void Add()int i;Lnode *p1;Lnode *end;printf(*添加商品*n);end=first;if(first!=NULL)end=Get_Lnode(num-1);doprintf(輸入 1 繼續(xù)添加數(shù)據(jù);輸入 0 返回:);scanf(%d,&i);
29、if(i)printf(n請輸入新添商品的信息(按“商品名稱 商品數(shù)量 總重量 商品性質(zhì) 出境日期”的形式輸入):n);p1=(Lnode *)malloc(sizeof(Lnode);scanf(%s %d %d %s %s,p1-name,&p1-number,&p1-weight,p1-nature,p1-time);p1-next=NULL;if(first=NULL)first=p1;elseend-next=p1;end=p1;num+;printf(n輸入成功!nn);printf(*nn);while(i);/*5修改信息函數(shù)*/void Change()int i,m;Lno
30、de *p1;printf(*修改商品信息*n);p1=first;for(i=0;iname,p1-number,p1-weight,p1-nature,p1-time);p1=p1-next;doprintf(n輸入對應(yīng)編號 1-%d 修改該商品信息;輸入 0 返回:,num);scanf(%d,&m);if(m)/非 0 進(jìn)入操作if(m0 & mnext;*/p1=Get_Lnode(m-1);scanf(%s %d %d %s %s,p1-name,&p1-number,&p1-weight,p1-nature,p1-time);printf(n修改成功!nn);printf(*nn
31、);elseprintf(n您的輸入有誤,請重新輸入:n);while(m);/輸入 0 退出循環(huán)/*6刪除信息函數(shù)*/void Delete()int i,m;Lnode *p1;Lnode *p2;printf(*刪除商品信息*n);p1=first;for(i=0;iname);p1=p1-next;doprintf(n輸入對應(yīng)編號 1-%d 刪除該商品信息;輸入 0 返回:,num);scanf(%d,&m);if(m)/非 0 進(jìn)入操作if(m0 & mnext;free(p2);elsep1=Get_Lnode(m-2); /待刪除節(jié)點(diǎn)的先驅(qū)p2=p1-next;/待刪除節(jié)點(diǎn)p1-
32、next=p2-next;/待刪除節(jié)點(diǎn)的后繼free(p2);num-;printf(n刪除成功!nn);p1=first;for(i=0;iname);p1=p1-next;printf(*nn);elseprintf(n您的輸入有誤,請重新輸入:n);while(m);/輸入 0 退出循環(huán)/*7查找信息函數(shù)*/void Find()int sk;printf(*查找商品*n);printf(1.商品名稱n2.商品數(shù)量n3.總重量n4.商品性質(zhì)n5.出境日期nn);printf(按以上哪一項(xiàng)進(jìn)行篩選?請輸入對應(yīng)編號(輸入 0 返回):);doscanf(%d,&sk);if(sk=0 & s
33、k=0|sk=5)elseprintf(您的輸入有誤,請重新輸入:);while(sk);/輸入 0 退出循環(huán)/*8排序函數(shù)*/void Sort()int i,j;int st1;/排序類型選項(xiàng)char st2;/升降序選項(xiàng)int *sqc;/存放已排序數(shù)據(jù)的下標(biāo)Lnode *p1;/待比較節(jié)點(diǎn)Lnode *p2;/已排序節(jié)點(diǎn)sqc=(int *)malloc(num*sizeof(int);printf(*按商品信息排序*n);printf(1.按商品數(shù)量n2.按總重量na.升序nb.降序nn);printf(選擇哪一種排序方法?請輸入對應(yīng)的編號和字母n(以“數(shù)字字母”的格式,無需空格;輸
34、入 0 返回):);doscanf(%d %c,&st1,&st2);printf(n*nn);if(st1)/非 0 進(jìn)入操作if(st1=1 | st1=2) & (st2=a | st2=b)/驗(yàn)證輸入if(st1=1)/按 商品數(shù)量 排序,默認(rèn)升序printf(按 商品數(shù)量 排序,);sqc0=0;for(i=1;i=0;j-)/對已排序的數(shù)據(jù)遍歷p2=Get_Lnode(sqcj);if(p1-number number)/待插入數(shù)據(jù)和已排序數(shù)據(jù)比較大小sqcj+1=sqcj;elsesqcj+1=i;break;if(j0)sqc0=i;/Pgi.number為最小的情況else/
35、按 總重量排序,默認(rèn)升序printf(按 總重量 排序,);sqc0=0;for(i=1;i=0;j-)p2=Get_Lnode(sqcj);if(p1-weight weight)sqcj+1=sqcj;elsesqcj+1=i;break;if(j=0;j-)p1=Get_Lnode(sqcj);printf(%-15s %-15d %-15d %-15s %-15sn,p1-name,p1-number,p1-weight,p1-nature,p1-time);else/輸出降序結(jié)果printf(降序結(jié)果:nn);printf(%-15s %-15s %-15s %-15s %-15sn
36、,商品名稱,商品數(shù)量,總重量,商品性質(zhì),出境日期n);for(j=0;jname,p1-number,p1-weight,p1-nature,p1-time);printf(n*nn);printf(輸入相應(yīng)的“數(shù)字字母”重新進(jìn)行排序,輸入數(shù)字 0 退出排序:);elseprintf(n您的輸入有誤,請重新輸入:n);while(st1);free(sqc);/*9退出并保存函數(shù)*/void Exit()Lnode *p1;fp=fopen(數(shù)據(jù).data,w);fprintf(fp,%s %dnn,商品種類:,num);fprintf(fp,%-15s %-15s %-10s %-15s %
37、-15sn,商品名稱,商品數(shù)量,總重量,商品性質(zhì),出境日期);p1=first;if(first!=NULL)while(p1-next!=NULL)fprintf(fp,%-15s %-15d %-15d %-15s %-15sn,p1-name,p1-number,p1-weight,p1-nature,p1-time);p1=p1-next;fprintf(fp,%-15s %-15d %-15d %-15s %-15sn,p1-name,p1-number,p1-weight,p1-nature,p1-time);fclose(fp);printf(n*n);printf(n數(shù)據(jù)已保存
38、!系統(tǒng)安全退出!nn);printf(*nn);exit(0);/*Seek_str()函數(shù)*/void Seek_str(int m)char str30;/存放查找條件int i;int cnt=0;/查找結(jié)果計(jì)數(shù)Lnode *p1;scanf(%s,str);printf(n*nn);p1=first;for(i=0;iname,str)if(!cnt)/輸出結(jié)果表頭printf(查找到以下相符的數(shù)據(jù):nn);printf(%-15s %-15s %-10s %-15s %-15sn,商品名稱,商品數(shù)量,總重量,商品性質(zhì),出境日期n);printf(%-15s %-15d %-15d %-15s %-15sn,p1-name,p1-number,p1-w
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年度打井工程地質(zhì)勘探數(shù)據(jù)處理合同范本4篇
- 二零二五年度美容化妝品電商平臺入駐與運(yùn)營合同4篇
- 二零二五年度出租車租賃與駕駛員休息保障合同3篇
- 個(gè)人住宅租賃簡明合同樣本(2024版)
- 二零二五版美容院美容院美容項(xiàng)目營銷策劃與推廣合同4篇
- 2025年度廠房場地租賃合同綠色建筑推廣范本4篇
- 二零二五年度出境領(lǐng)隊(duì)團(tuán)隊(duì)管理服務(wù)合同4篇
- 二零二五儲煤場租賃合同(含煤炭價(jià)格波動風(fēng)險(xiǎn)管理)3篇
- 2025年度汽車租賃保險(xiǎn)附加合同模板4篇
- 2025年版?zhèn)€人委托代繳社保與生育保險(xiǎn)代繳合同模板4篇
- 河北省邯鄲市永年區(qū)2024-2025學(xué)年九年級上學(xué)期期末考試化學(xué)試卷(含答案)
- 交通運(yùn)輸行政執(zhí)法程序規(guī)定培訓(xùn)課件
- 2024屆高考英語詞匯3500左右
- 三兄弟分田地宅基地協(xié)議書范文
- 第八講 發(fā)展全過程人民民主PPT習(xí)概論2023優(yōu)化版教學(xué)課件
- 實(shí)體瘤療效評價(jià)標(biāo)準(zhǔn)RECIST-1.1版中文
- 企業(yè)新春茶話會PPT模板
- GB/T 19185-2008交流線路帶電作業(yè)安全距離計(jì)算方法
- DIC診治新進(jìn)展課件
- 公路工程施工現(xiàn)場安全檢查手冊
- 1汽輪機(jī)跳閘事故演練
評論
0/150
提交評論