![C語言超市管理系統(tǒng)源程序_第1頁](http://file3.renrendoc.com/fileroot_temp3/2022-4/6/53bf4da7-82f6-4d39-a28f-6f5a8712839c/53bf4da7-82f6-4d39-a28f-6f5a8712839c1.gif)
![C語言超市管理系統(tǒng)源程序_第2頁](http://file3.renrendoc.com/fileroot_temp3/2022-4/6/53bf4da7-82f6-4d39-a28f-6f5a8712839c/53bf4da7-82f6-4d39-a28f-6f5a8712839c2.gif)
![C語言超市管理系統(tǒng)源程序_第3頁](http://file3.renrendoc.com/fileroot_temp3/2022-4/6/53bf4da7-82f6-4d39-a28f-6f5a8712839c/53bf4da7-82f6-4d39-a28f-6f5a8712839c3.gif)
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)
文檔簡介
1、WORD格式C 語言超市管理系統(tǒng)源程序超市管理系統(tǒng)源程序代碼,要可以執(zhí)行的。最好是文件,鏈表中的一種。好了一定重金酬謝最正確答案 有一個小型超市,出售 NN> 10種商品,設(shè)計并實現(xiàn)一個系統(tǒng),完成以下功能:1保存及輸出。超市中的各種商品信息保存在指定文件中,可以把它們輸出顯示。2計算并排序。計算每類商品的總價值sum,單精度及平均價aver,單精度,輸出一位小數(shù),將每類商品按平均價從大到小的順序排序打印出來。3統(tǒng)計。統(tǒng)計輸出庫存量低于 100 的貨號及類別。統(tǒng)計輸出有兩種以上含兩種商品庫存量低于 100 的商品類別。1.2 總體構(gòu)造本程序主要分為八個模塊:主模塊、信息輸出修改模塊、新建信
2、息模塊、排序模塊、計算模塊、統(tǒng)計模塊 1、統(tǒng)計模塊 2、打印模塊。1 主模塊:通過調(diào)用各分模塊實現(xiàn)功能;2 信息輸出修改模塊:輸出顯示文件中商品信息內(nèi)容,添加商品信息,刪除商品信息,修改商品信息;3 新建商品信息模塊: 建立一個新構(gòu)造體, 為鏈表存信息用,并且將信息保存在指定的文件中;4 排序模塊: 把文件中順序零亂的商品信息按單價的大小從高到低進展排序,放到鏈表里存儲;5 計算模塊:將所有商品的價格與庫存量進展累加求和;6 打印模塊:將商品信息按每類平均價格排序從高到低按順序打印出來;7 統(tǒng)計模塊 1:統(tǒng)計庫存量低于100的貨名及類別;8 統(tǒng)計模塊 2:統(tǒng)計商品庫存量有2種以上含 2 種低于
3、 100 的商品類別。附錄程序清單專業(yè)資料整理WORD格式#include "stdio.h"/* 輸入,輸出頭文件*/#include "stdlib.h"/* 申請空間頭文件*/#include "string.h"/* 對字符串加工頭文件#include "conio.h"/* 清屏頭文件 */FILE *fp;int n=0;/* 定義文件指針類型*/int i,j,a4,m;/* 定義整數(shù)類型 */float aver4,sum4,g4,h;/* 定義浮點類型*/*/專業(yè)資料整理WORD格式char c5
4、="elec"char d5="comm"/* 定義字符數(shù)組類型/* 定義字符數(shù)組類型*/*/專業(yè)資料整理WORD格式char e5="food"/* 定義字符數(shù)組類型*/專業(yè)資料整理WORD格式char f5="offi"/* 定義字符數(shù)組類型*/專業(yè)資料整理WORD格式struct good/* 定義構(gòu)造體*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式int num;char name20;char kind40;/* 商品編號 */* 商品名稱/* 商品類型*/*/專業(yè)資料整理WORD格式float p
5、rice;char unit10;/* 商品價格 */* 商品單位*/專業(yè)資料整理WORD格式int quantity;struct good *next;/* 商品數(shù)量 */* 定義構(gòu)造體指針類型*/專業(yè)資料整理WORD格式*head,*p1,*p2;專業(yè)資料整理WORD格式struct good *createlist()/* 創(chuàng)立鏈表函數(shù)*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式struct good *head1,*p1,*p2;/* 定義構(gòu)造體指針類型*/if(fp=fopen("goods message.txt","w")=NUL
6、L)/* 判斷能否翻開文件*/專業(yè)資料整理WORD格式printf("can not open the file");專業(yè)資料整理WORD格式exit(0);/* 完畢程序*/專業(yè)資料整理WORD格式head1=(struct good *)malloc(sizeof(struct good); /* 申請頭結(jié)點空間 */ p1=head1;p2=head1;printf("*n");專業(yè)資料整理WORD格式printf(" 請輸入信息 :編號,名稱,類型,價格,單位,數(shù)目n");專業(yè)資料整理WORD格式printf("以輸
7、入“ 1表示完畢輸入n");專業(yè)資料整理WORD格式printf("*n");printf("_n");scanf("%d %s %s %f %s %d",&p1->num,p1->name,p1->kind,&p1->price,p1->unit,&p1->quantit專業(yè)資料整理WORD格式y(tǒng));/* 輸入商品信息*/printf("_n");p1->next=NULL;fprintf(fp,"%d%s%s%f",
8、p1->num,p1->name,p1->kind,p1->price,p1->unit,p1->quantity);%s%d/* 將商品信息專業(yè)資料整理WORD格式寫入文件*/專業(yè)資料整理WORD格式while(1)專業(yè)資料整理WORD格式p1=(struct good *)malloc(sizeof(struct good);/* 申請新空間*/專業(yè)資料整理WORD格式printf("*n");專業(yè)資料整理WORD格式printf(" 請輸入信息 :編號,名稱,類型,價格,單位,數(shù)目printf("以輸入“ 1表示
9、完畢輸入n");printf("*n");printf("_n");scanf("%d",&p1->num);if(p1->num=-1)/* 申請空間完畢條件*/n");專業(yè)資料整理WORD格式printf("_nn");fprintf(fp,"%d",-1);fclose(fp);return head1;/* 返回頭指針*/專業(yè)資料整理WORD格式scanf("%s %s %f %s %d",p1->name,p1->
10、kind,&p1->price,p1->unit,&p1->quantity); /*輸入商專業(yè)資料整理WORD格式品信息*/專業(yè)資料整理WORD格式printf("_n");fprintf(fp,"%d%s%s%f",p1->num,p1->name,p1->kind,p1->price,p1->unit,p1->quantity);%s%d/* 將商品信息寫專業(yè)資料整理WORD格式入文件*/專業(yè)資料整理WORD格式p1->next=NULL;專業(yè)資料整理WORD格式p2-&g
11、t;next=p1;p2=p1;專業(yè)資料整理WORD格式struct good *paixu(struct good*head2)/* 鏈表排序函數(shù)*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式struct good *p6,*p7,*r,*s;/* 定義構(gòu)造體指針類型*/專業(yè)資料整理WORD格式for(i=0;i<=3;i+)/* 賦初值值*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式ai=0;sumi=0;averi=0;專業(yè)資料整理WORD格式p6=(struct good *)malloc(sizeof(struct good);/* 申請新空間p6->next
12、=head2;head2=p6;while(p6->next!=NULL)/* 判斷循環(huán)完畢條件*/*/專業(yè)資料整理WORD格式p7=p6->next;r=p6;專業(yè)資料整理WORD格式while(p7->next!=NULL)/* 判斷循環(huán)完畢條件*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式if(p7->next->price)>(r->next->price)/* 判斷是否調(diào)換*/專業(yè)資料整理WORD格式r=p7;p7=p7->next;專業(yè)資料整理WORD格式if(p6!=r)/* 判斷循環(huán)完畢條件*/專業(yè)資料整理WORD格式
13、專業(yè)資料整理WORD格式s=r->next;/* 指針調(diào)換*/專業(yè)資料整理WORD格式r->next=s->next;s->next=p6->next;p6->next=s;p6=p6->next;p6=head2;head2=head2->next;專業(yè)資料整理WORD格式free(p6);/* 釋放第一個無效空間*/專業(yè)資料整理WORD格式return head2;專業(yè)資料整理WORD格式void jisuan()p1=head;do專業(yè)資料整理WORD格式if(strcmp(p1->kind,c)=0)/* 判斷是否為電器類型*/專業(yè)
14、資料整理WORD格式專業(yè)資料整理WORD格式sum0=sum0+(p1->price)*(p1->quantity);/* 求電器總價 */a0=a0+p1->quantity;/* 求電器總件數(shù)*/if(strcmp(p1->kind,d)=0)/* 判斷是否為日用品類型*/sum1=sum1+(p1->price)*(p1->quantity);/* 求日用品總價*/a1=a1+p1->quantity;/* 求日用品總件數(shù)*/if(strcmp(p1->kind,e)=0)/* 判斷是否為辦公用品類型*/sum2=sum2+(p1->
15、price)*(p1->quantity);/* 求辦公用品總價*/a2=a2+p1->quantity;/* 求辦公用品總件數(shù)*/if(strcmp(p1->kind,f)=0)/* 判斷是否為食品類型*/sum3=sum3+(p1->price)*(p1->quantity);/* 求食品總價 */專業(yè)資料整理WORD格式a3=a3+p1->quantity;/* 求食品總件數(shù)*/專業(yè)資料整理WORD格式p1=p1->next;專業(yè)資料整理WORD格式while (p1!=NULL);/* 遍歷鏈表完畢條件*/專業(yè)資料整理WORD格式for(i=0
16、;i<4;i+)averi=sumi/ai;/* 求每類商品平均價 */printf("*n");printf(" 商品類型t平均價 t總庫存量 n");printf("*n");printf("_n");printf(" 電器總價值 :%0.1ft平均價 :%0.1ft 總庫存量 :%dn",sum0,aver0,a0);printf("_n");printf(" 日用品總價值 :%0.1ft 平均價 :%0.1ft總庫存量 :%dn",sum1,
17、aver1,a1);printf("_n");printf(" 食品總價值 :%0.1ft平均價 :%0.1ft 總庫存量 :%dn",sum2,aver2,a2);printf("_n");printf(" 辦公用品總價值 :%0.1ft 平均價 :%0.1ft 總庫存量 :%dn",sum3,aver3,a3); printf("_n");專業(yè)資料整理WORD格式void shuchu()/* 輸出商品信息函數(shù)*/專業(yè)資料整理WORD格式do專業(yè)資料整理WORD格式struct good *
18、p3,*p4,*p5;/* 定義構(gòu)造體指針類型*/int n=0,p=0,q=0,r=0;printf(" 所有商品信息:n");printf(" 編號,名稱,類型,價格,單位,數(shù)目n");printf("*n");if(fp=fopen("goods message.txt","rb+")=NULL) /*判斷能否翻開文件*/專業(yè)資料整理WORD格式printf("can not open the file"); exit(0); /* 完畢程序*/專業(yè)資料整理WORD格式
19、head=(struct good *)malloc(sizeof(struct good); /*申請頭結(jié)點空間p3=head;fscanf(fp,"%d%s%s%f",&p3->num,p3->name,p3->kind,&p3->price,p3->unit,&p3->quantity);*/%s%d/* 從文件專業(yè)資料整理WORD格式中寫到鏈表*/專業(yè)資料整理WORD格式while(1)專業(yè)資料整理WORD格式p4=(struct good *)malloc(sizeof(struct good);/* 申
20、請頭結(jié)點空間*/專業(yè)資料整理WORD格式fscanf(fp,"%d ",&p4->num);專業(yè)資料整理WORD格式if(p4->num!=-1)/* 判斷循環(huán)完畢條件*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式fscanf(fp,"%s%s %f %s%d ",p4->name,p4->kind,&p4->price,p4->unit,&p4->quantity);/*專業(yè)資料整理WORD格式從文件中寫到鏈表*/專業(yè)資料整理WORD格式p4->next=NULL;p3-&g
21、t;next=p4;p3=p4;elsep3->next=NULL;break;fclose(fp);/* 關(guān)閉文件 */p3=head;while(p3!=NULL)printf(" %d %s %s %0.1f %s %dnn",p3->num,p3->name,p3->kind,p3->price, p3->unit,p3->quantity);printf("_n");p3=p3->next;printf("*n");printf("/n");while(n!
22、=4)p3=head;printf("*n");printf("1添加商品信息 n");printf("2刪除某商品信息n");printf("3修改某商品信息n");printf("4返回當(dāng)你完成了對某一商品的添加、刪除或者修改后請按4 返回 n");printf("*n");scanf("%d",&n);專業(yè)資料整理WORD格式if(n=1)/* 添加商品信息*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式printf(" 請輸入
23、商品編號名稱類型價格printf("*n");p4=(struct good *)malloc(sizeof(struct good);單位數(shù)目 n");/* 申請空間 */專業(yè)資料整理WORD格式scanf("%d %s %s %f %s %d",&p4->num,p4->name,p4->kind,&p4->price,p4->unit,&p4->quantit專業(yè)資料整理WORD格式y(tǒng));/* 輸入商品信息 p4->next=NULL; while(p3->next!
24、=NULL)*/* 判斷循環(huán)完畢條件*/專業(yè)資料整理WORD格式p3=p3->next;專業(yè)資料整理WORD格式p3->next=p4;p3=head;if(fp=fopen("goods message.txt","w")=NULL)/* 判斷能否翻開文件*/printf("can not open the file");專業(yè)資料整理WORD格式exit(0);/* 完畢程序*/專業(yè)資料整理WORD格式while(p3!=NULL)專業(yè)資料整理WORD格式fprintf(fp,"%d%s%s%f%s%d專業(yè)資料
25、整理WORD格式",p3->num,p3->name,p3->kind,p3->price,p3->unit,p3->quantity)信息寫入文件 */* 將商品專業(yè)資料整理WORD格式p3=p3->next;fprintf(fp,"%d",-1);專業(yè)資料整理WORD格式fclose(fp);/* 關(guān)閉文件*/專業(yè)資料整理WORD格式printf("*n");printf("_n");printf("-請按 4 返回 -n");printf("_n&
26、quot;);printf("*n");if(n=2)/* 刪除商品 */printf("*n");printf(" 請輸入需要刪除的商品編號n");printf("*n");scanf("%d",&p);printf("*n");printf("1確認(rèn)刪除 n2 取消刪除 n");printf("*n");scanf("%d",&r);if(r=1)if(head->num)=p)head=h
27、ead->next;free(p3);/* 釋放空間 */elsep4=head;p3=p4->next;專業(yè)資料整理WORD格式while(p3!=NULL)/* 判斷循環(huán)完畢條件*/if(p3->num)=p)p5=p3->next;free(p3);/* 釋放空間 */p4->next=p5;break;p3=p3->next;p4=p4->next;if(fp=fopen("goods message.txt","w")=NULL)/* 判斷能否翻開文件*/printf("can not ope
28、n the file");exit(0);/* 完畢程序 */p3=head;while(p3!=NULL)/* 判斷循環(huán)完畢條件*/專業(yè)資料整理WORD格式fprintf(fp,"%d%s%s%f%s%d專業(yè)資料整理WORD格式",p3->num,p3->name,p3->kind,p3->price,p3->unit,p3->quantity);/* 將商品信息專業(yè)資料整理WORD格式寫入文件*/專業(yè)資料整理WORD格式p3=p3->next;fprintf(fp,"%d",-1);專業(yè)資料整理WO
29、RD格式fclose(fp);/* 關(guān)閉文件*/專業(yè)資料整理WORD格式if(r=2)專業(yè)資料整理WORD格式continue;/* 繼續(xù)循環(huán)*/專業(yè)資料整理WORD格式printf("*n");printf("_n");專業(yè)資料整理WORD格式printf("-請按4 返回 -n");專業(yè)資料整理WORD格式printf("_n");printf("*n");if(n=3)/* 修改某商品信息*/printf(" 請輸入需要修改的商品編號n");scanf("%d
30、",&q);while(p3!=NULL)/* 判斷循環(huán)完畢條件*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式if(p3->num)=q)/* 判斷是否為所需要修改的商品*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式printf(" 請輸入商品單價與庫存量如果單價不變請輸入原來的單價n");scanf("%f %d",&p3->price,&p3->quantity);/* 輸入商品價格與庫存量*/專業(yè)資料整理WORD格式p3=p3->next;專業(yè)資料整理WORD格式if(fp=fo
31、pen("goods message.txt","w")=NULL)/* 判斷能否翻開文件*/printf("can not open the file");exit(0);/* 完畢程序 */p3=head;while(p3!=NULL)/* 判斷循環(huán)完畢條件*/專業(yè)資料整理WORD格式fprintf(fp,"%d%s%s%f%s%d專業(yè)資料整理WORD格式",p3->num,p3->name,p3->kind,p3->price,p3->unit,p3->quantity);
32、/* 將商品信專業(yè)資料整理WORD格式息寫入文件 */p3=p3->next;fprintf(fp,"%d",-1);fclose(fp);/* 關(guān)閉文件 */printf("*n");printf("_n");printf("-請按 4 返回 -n");printf("_n");printf("*n");if(n=4)/* 退出 */break;printf("*n");printf("1繼續(xù)修改 n-n2返回 n");prin
33、tf("*n");scanf("%d",&p);if(p=1)專業(yè)資料整理WORD格式continue;/* 繼續(xù)循環(huán)*/專業(yè)資料整理WORD格式if(p=2)專業(yè)資料整理WORD格式break;/* 跳出循環(huán)*/專業(yè)資料整理WORD格式while(n!=2);專業(yè)資料整理WORD格式fclose(fp);/* 關(guān)閉文件*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式void printf0(struct good *p)/* 遍歷鏈表并打印電器類商品函數(shù)*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式struct good *p3;/*
34、 定義構(gòu)造體指針類型*/專業(yè)資料整理WORD格式p3=p;專業(yè)資料整理WORD格式while (p3!=NULL)/* 判斷遍歷鏈表循環(huán)完畢條件*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式if(strcmp(p3->kind,c)=0)/* 判斷商品類型是否為電器類型*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式printf("%dt%st%st%0.1ft%st%dn",p3->num,p3->name,p3->kind,p3->price,p3->unit,p3->quantity);/* 輸出電器類商品信息*/p
35、rintf("_n");p3=p3->next;return;專業(yè)資料整理WORD格式void printf1(struct good *p)/* 遍歷鏈表并打印日用品類商品函數(shù)*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式struct good *p3;/* 定義構(gòu)造體指針類型*/專業(yè)資料整理WORD格式p3=p;專業(yè)資料整理WORD格式while (p3!=NULL)/* 判斷遍歷鏈表循環(huán)完畢條件*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式if(strcmp(p3->kind,d)=0)/* 判斷商品類型是否為日用品類型*/專業(yè)資料整理WORD
36、格式專業(yè)資料整理WORD格式printf("%dt%st%st%0.1ft%st%dn",p3->num,p3->name,p3->kind,p3->price,p3->unit,p3->quantity);/* 輸出日用品類商品信息*/printf("_n");p3=p3->next;return;專業(yè)資料整理WORD格式void printf2(struct good *p)/* 遍歷鏈表并打印辦公用品類商品函數(shù)*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式struct good *p3;/* 定義構(gòu)造
37、體指針類型*/專業(yè)資料整理WORD格式p3=p;專業(yè)資料整理WORD格式while (p3!=NULL)/* 判斷遍歷鏈表循環(huán)完畢條件*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式if(strcmp(p3->kind,e)=0)/* 判斷商品類型是否為辦公用品類型*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式printf("%dt%st%st%0.1ft%st%dn",p3->num,p3->name,p3->kind,p3->price,p3->unit,p3->quantity);/* 輸出辦公用品類商品信息*/pr
38、intf("_n");p3=p3->next;return;專業(yè)資料整理WORD格式void printf3(struct good *p)/* 遍歷鏈表并打印食品類商品函數(shù)*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式struct good *p3;/* 定義構(gòu)造體指針類型*/專業(yè)資料整理WORD格式p3=p;專業(yè)資料整理WORD格式while (p3!=NULL)/* 判斷遍歷鏈表循環(huán)完畢條件*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式if(strcmp(p3->kind,f)=0)/* 判斷商品類型是否為食品類型*/專業(yè)資料整理WORD格式專
39、業(yè)資料整理WORD格式printf("%dt%st%st%0.1ft%st%dn",p3->num,p3->name,p3->kind,p3->price,p3->unit,p3->quantity);/* 輸出食品類商品信息*/printf("_n");p3=p3->next;return;void shunxudayin()for(i=0;i<4;i+)專業(yè)資料整理WORD格式gi=averi;for(j=0;j<3;j+)/* 將平均價賦給新數(shù)組*/* 將新數(shù)組用冒泡排序法排序*/專業(yè)資料整理W
40、ORD格式for(i=j+1;i<4;i+)if(gj<gi)h=gj;gj=gi;gi=h;專業(yè)資料整理WORD格式printf("n*n");printf(" 商品平均價格排序表從高到低n");專業(yè)資料整理WORD格式printf("*n");printf("_n");printf(" 編號 t 名稱 t 類別 t 單價 t 單位 t 數(shù)量 n");printf("_n");for(j=0;j<4;j+)for(i=0;i<4;i+)專業(yè)資料整理W
41、ORD格式if (averi=gj)/* 判斷每類商品平均價格的先后順序*/專業(yè)資料整理WORD格式switch(i)case 0:專業(yè)資料整理WORD格式printf0(head); /*調(diào)用遍歷鏈表并打印電器類商品函數(shù)*/專業(yè)資料整理WORD格式break;case 1:專業(yè)資料整理WORD格式printf1(head); /*調(diào)用遍歷鏈表并打印日用品類商品函數(shù)*/專業(yè)資料整理WORD格式break;case 2:專業(yè)資料整理WORD格式printf2(head);/*調(diào)用遍歷鏈表并打印辦公用品類商品函數(shù)*/專業(yè)資料整理WORD格式break;case 3:專業(yè)資料整理WORD格式prin
42、tf3(head);/* 調(diào)用遍歷鏈表并打印食品類商品函數(shù)*/專業(yè)資料整理WORD格式break;專業(yè)資料整理WORD格式void tongji1()p1=head;printf("n*n");printf(" 庫存量低于100 的貨名及類別n");printf("*n");printf("_n");printf(" 商品名稱 t 商品類型 n");printf("_n");專業(yè)資料整理WORD格式while(p1!=NULL)/* 判斷遍歷鏈表循環(huán)完畢條件*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式if(p1->quantity<100)/* 判斷庫存量是否小于100*/專業(yè)資料整理WORD格式專業(yè)資料整理WORD格式printf("%st%sn",p1->name,p1->kind); /* 輸出商品名稱及類別 */ printf("_n");p1=p1->next;專業(yè)資料整理WORD格式void tongji2()printf(&q
溫馨提示
- 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)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 13《我能行》(說課稿)-2023-2024學(xué)年統(tǒng)編版道德與法治二年級下冊
- Unit 6 How do you feel Part B Read and Write(說課稿)-2024-2025學(xué)年人教PEP版英語六年級上冊
- 6《一封信》說課稿-2024-2025學(xué)年統(tǒng)編版語文二年級上冊
- 12 低碳生活每一天 第二課時 說課稿-2023-2024學(xué)年道德與法治四年級上冊統(tǒng)編版001
- 2025城市房屋拆遷安置補償合同
- 公司轉(zhuǎn)讓工程合同范本
- 6《探訪古代文明》說課稿-2023-2024學(xué)年道德與法治六年級下冊統(tǒng)編版
- 鋁合金踢腳線施工方案
- 項目租車方案
- 住建部 認(rèn)購合同范例
- 北京理工大學(xué)應(yīng)用光學(xué)大全李林-課件
- 護工(陪護)培訓(xùn)教材(完整版)資料
- 機械加工生產(chǎn)計劃排程表
- 女性生殖系統(tǒng)解剖與生理 生殖系統(tǒng)的血管淋巴和神經(jīng)
- 江蘇省2023年對口單招英語試卷及答案
- 易制毒化學(xué)品安全管理制度匯編
- GB/T 35506-2017三氟乙酸乙酯(ETFA)
- 特種設(shè)備安全監(jiān)察指令書填寫規(guī)范(特種設(shè)備安全法)參考范本
- 硬筆書法全冊教案共20課時
- 《長方形的面積》-完整版課件
- PDCA降低I類切口感染發(fā)生率
評論
0/150
提交評論