版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、#include <stdio.h>#include <string.h>#include <malloc.h>#include <stdlib.h>#include <time.h>#include <conio.h>#define LEN sizeof(struct book)#define VLEN sizeof(struct vip)#define SLEN sizeof(struct sales)struct vip *vhead=NULL;struct vip *v1,*v2;struct sales *she
2、ad=NULL;struct sales *s1,*s2;int V,S;/*結(jié)構(gòu)體定義*/struct bookchar bnum 12;/*書(shū)號(hào)*/char bname 41;/*書(shū)名*/char author 20;/*作者*/float price;/*書(shū)價(jià)*/int acount;/*書(shū)存在本數(shù)*/struct book *next;struct salesfloat count;struct sales *snext;struct vipchar vnum12;char vname41;int level;float persum;float discount;struct vip
3、 *vnext;/*函數(shù)聲明*/void loadbook();/*自動(dòng)讀入書(shū)庫(kù)信息*/void welcome();/*歡迎界面顯示*/void inputbook();/*增加書(shū)本信息*/void loadvip();void loadsales(); /*自動(dòng)錄入銷(xiāo)售信息*/void daysales(); /*日銷(xiāo)售額*/void monthsales(); /*月銷(xiāo)售額*/void yearsales(); /*年銷(xiāo)售額*/void search();/*查詢書(shū)數(shù)量*/void search_by_bnum();/*通過(guò)書(shū)號(hào)查詢*/void search_by_bname();/*通
4、過(guò)書(shū)名查詢*/void search_by_author();/*通過(guò)作者查詢*/void buy();/*購(gòu)買(mǎi)書(shū)籍*/void list();/*列出書(shū)庫(kù)信息*/void listvip();void listsales(); /*列出銷(xiāo)售信息*/void delet();/*刪除書(shū)目*/void delet_by_bnum();/*通過(guò)書(shū)號(hào)刪除*/void delet_by_bname();/*通過(guò)書(shū)名刪除*/void delet_by_author();/*通過(guò)作者刪除*/void save();/*保存記錄*/void redef();/*修改密碼*/void bover();/*顯示
5、已售完的書(shū)*/void buy_by_huiyuan(); /*會(huì)員買(mǎi)書(shū)*/void buy_by_feihuiyuan(); /*非會(huì)員買(mǎi)書(shū)*/void exit0();/*退出*/int menu();/*主菜單*/void print2();/*顯示查詢菜單*/void printdelete();/*顯示刪除菜單*/struct book *head=NULL,*head2=NULL;/*head和head2分別用于書(shū)庫(kù)的頭指針和已購(gòu)書(shū)的頭指針*/struct book *p1,*p2,*p3,*p4,*p5,*p6;/*p1、p2、p3用于操作書(shū)庫(kù)圖書(shū),p4、p5、p6用于操作已購(gòu)書(shū)
6、*/int save_flag=0;/*圖書(shū)信息變動(dòng)標(biāo)志*/int buy_flag=0;/*買(mǎi)書(shū)時(shí),是否調(diào)用過(guò)查詢功能標(biāo)志*/int shan_flag=0;/*刪書(shū)時(shí),是否調(diào)用過(guò)顯示已售完書(shū)功能標(biāo)志*/int T=0;/*記錄導(dǎo)入的書(shū)本數(shù)*/char mima11="123456"/*初始密碼*/void bookmanage();void salesmanage(); /*銷(xiāo)售統(tǒng)計(jì)*/int main() /*主函數(shù)*/welcome();/*歡迎界面顯示*/loadbook();loadsales();loadvip();/*自動(dòng)導(dǎo)入書(shū)庫(kù)信息*/while(1)sw
7、itch(menu()case 1:system("cls");bookmanage();break;case 2:system("cls");buy();break;case 3:system("cls");listvip();break;case 4:system("cls");salesmanage();break;case 5:system("cls");break;case 0:system("cls");exit0();break;default:printf(&
8、quot;n選擇錯(cuò)誤,請(qǐng)按主菜單提示輸入您的正確選擇(08)n");printf("按任意鍵返回繼續(xù):");rewind(stdin);/*清空緩沖區(qū)*/getch();return 0;/*菜單*/int menu()int choice;system("cls"); /*系統(tǒng)清屏*/printf("n *主菜單*nn");printf("1.圖書(shū)管理nn"); printf("2.銷(xiāo)售管理nn");printf("3.會(huì)員管理nn");printf("
9、4.銷(xiāo)售額統(tǒng)計(jì)nn");printf("5.說(shuō)明nn");printf("0.退出nnn");printf("請(qǐng)輸入您的選擇(08):");rewind(stdin);/*清空緩沖區(qū)*/scanf("%d",&choice);return choice;/*返回用戶的選擇*/void bookmanage() system("cls"); int choice1; do printf(" "); /*顯示菜單*/printf(" *圖書(shū)管理* &q
10、uot;); printf(" ");printf(" ");printf(" 功能選項(xiàng): n");printf(" 1 : 圖書(shū)信息錄入 n");printf(" 2 : 圖書(shū)信息瀏覽 n");printf(" 3 : 圖書(shū)信息查詢 n");printf(" 4 : 圖書(shū)信息刪除 n");printf(" 5 : 圖書(shū)信息保存 n");printf(" 0 : 返回主界面 n");printf(" &qu
11、ot;);printf("t請(qǐng)選擇操作:"); scanf("%d", &choice1); switch (choice1) /*菜單選擇*/ case 1 : system("cls");inputbook();break; case 2 : system("cls");list(); break ; case 3 :system("cls");search(); break ; case 4 : system("cls");delet(); break ; ca
12、se 5 : system("cls");save(); break ; case 0 :system("cls");break; while (choice1!=0); printf("n");void welcome() /*歡迎界面顯示*/ system("cls");printf("nntt*歡迎使用圖書(shū)銷(xiāo)售管理系統(tǒng)*nn");void loadbook() /*開(kāi)始導(dǎo)入書(shū)庫(kù)信息*/FILE *fp;struct book *p7;if(fp=fopen("0.txt"
13、;,"r")=NULL) /*打開(kāi)文件*/printf("nn文件打開(kāi)失敗或文件不存在n");printf("nn按回車(chē)鍵繼續(xù):");getchar();return;head=p3=p1=(struct book*)malloc(LEN); /*開(kāi)辟一個(gè)新單元*/p1->next=NULL;p7=(struct book*)malloc(LEN); /*作為一個(gè)臨時(shí)存儲(chǔ)空間,避免讀取文件最后的回車(chē)符*/fscanf(fp,"%s %s %s %f %d",&p7->bnum,&p7-&
14、gt;bname,&p7->author,&p7->price,&p7->acount);while(!feof(fp)T+;*p1=*p7; /*文件沒(méi)結(jié)束就將p7中的信息給p1*/p2=(struct book*)malloc(LEN); /*繼續(xù)開(kāi)辟一個(gè)新單元,直到文件讀完*/p1->next=p2;p3=p1;p1=p2;p1->next=NULL;fscanf(fp,"%s%s%s%f%d",&p7->bnum,&p7->bname,&p7->author,&p
15、7->price,&p7->acount);free(p2); /*釋放多申請(qǐng)的一個(gè)單元*/p3->next=NULL;printf("nnttt%d項(xiàng)圖書(shū)信息已經(jīng)由系統(tǒng)自動(dòng)載入.nnttt",T);rewind(stdin);/*清空緩沖區(qū)*/if(fclose(fp)printf("文件關(guān)閉失敗!n");exit(0);void salesmanage() system("cls"); int choice4; do printf(" "); /*顯示菜單*/printf("
16、 *銷(xiāo)售統(tǒng)計(jì)* "); printf(" ");printf(" ");printf(" 功能選項(xiàng): n");printf(" 1 : 日銷(xiāo)售額 n");printf(" 2 : 月銷(xiāo)售額 n");printf(" 3 : 年銷(xiāo)售額 n");printf(" 0 : 返回主界面 n");printf(" ");printf("t請(qǐng)選擇操作:"); scanf("%d", &cho
17、ice4); switch (choice4) /*菜單選擇*/ case 1 : system("cls");daysales();break; case 2 : system("cls");monthsales(); break ; case 3 :system("cls");yearsales(); break ; case 0 :system("cls");break; while (choice4!=0); printf("n");void loadsales() /*開(kāi)始導(dǎo)入銷(xiāo)售信息
18、*/FILE *vfp;if(vfp=fopen("sales.txt","r")=NULL) /*打開(kāi)文件*/printf("nnttt銷(xiāo)售數(shù)據(jù)文件打開(kāi)失敗或文件不存在nn");return;shead=s2=s1=(struct sales*)malloc(VLEN);while(!feof(vfp)S+;fscanf(vfp,"%f ",&s2->count);s1=(struct sales*)malloc(VLEN); s2->snext=s1;s2=s1;s1=NULL;s2->
19、;snext=NULL;free(s2);printf("nnttt項(xiàng)銷(xiāo)售信息已經(jīng)由系統(tǒng)自動(dòng)載入.nnnnttt",S);rewind(stdin);/*清空緩沖區(qū)*/if(fclose(vfp)printf("文件關(guān)閉失敗!n");exit(0);void daysales()void monthsales()void yearsales()void listsales()s2=shead;printf("nntt *當(dāng)前銷(xiāo)售信息*n");printf("nn 銷(xiāo)售額 nn");while(s2->coun
20、t!=NULL)printf("%f",s2->count);s2=s2->snext;(s2->snext)=s2=NULL;printf("n");printf("銷(xiāo)售信息列出完畢,按回車(chē)鍵返回子菜單:");rewind(stdin);/*清空緩沖區(qū)*/getchar();system("cls"); void loadvip() /*開(kāi)始導(dǎo)入會(huì)員信息*/FILE *vfp;if(vfp=fopen("1.txt","r")=NULL) /*打開(kāi)文件*/
21、printf("nnvip數(shù)據(jù)文件打開(kāi)失敗或文件不存在n");printf("nn按回車(chē)鍵繼續(xù):");getchar();return;vhead=v2=v1=(struct vip*)malloc(VLEN);while(!feof(vfp)V+;fscanf(vfp,"%s %s %d %f %f",&v2->vnum,&v2->vname,&v2->level,&v2->persum,&v2->discount);v1=(struct vip*)malloc(
22、VLEN); v2->vnext=v1;v2=v1;v1=NULL;v2->vnext=NULL;free(v2);printf("nnttt%d項(xiàng)會(huì)員信息已經(jīng)由系統(tǒng)自動(dòng)載入.nnnnttt按任意鍵顯示主菜單:",V);rewind(stdin);/*清空緩沖區(qū)*/getchar();if(fclose(vfp)printf("文件關(guān)閉失敗!n");exit(0);void listvip()v2=vhead;if(v2=NULL|V=0)/*文件不存在或書(shū)庫(kù)中沒(méi)書(shū)*/printf("nnnntttt當(dāng)前書(shū)庫(kù)沒(méi)書(shū)!");p
23、rintf("nntt按回車(chē)鍵返回:");rewind(stdin);/*清空緩沖區(qū)*/getchar();return;elseprintf("nntt *當(dāng)前書(shū)庫(kù)信息*n");printf("nn會(huì)員號(hào) 姓名 等級(jí) 會(huì)員總消費(fèi) 會(huì)員折扣nn");while(v2->discount!=NULL)printf("%-18s%-10s%-5d %-6.2f %-5fn",v2->vnum,v2->vname,v2->level,v2->persum,v2->discount);v
24、2=v2->vnext;printf("n");printf("會(huì)員信息列出完畢,按回車(chē)鍵返回子菜單:");rewind(stdin);/*清空緩沖區(qū)*/getchar();system("cls"); void buy() system("cls"); /*系統(tǒng)清屏*/ int choice1; do printf(" "); /*顯示菜單*/printf(" *銷(xiāo)售管理* "); printf(" ");printf(" ")
25、;printf(" 功能選項(xiàng): n");printf(" 1 : 會(huì)員購(gòu)買(mǎi) n");printf(" 2 : 非會(huì)員購(gòu)買(mǎi) n");printf(" 0 : 返回主界面 n");printf(" ");printf("t請(qǐng)選擇操作:"); scanf("%d", &choice1); switch (choice1) /*菜單選擇*/ case 1 : system("cls");buy_by_huiyuan();break; c
26、ase 2 : system("cls");buy_by_feihuiyuan(); break ; case 0 :system("cls");break; while (choice1!=0); printf("n");void buy_by_huiyuan()/*會(huì)員買(mǎi)書(shū)*/ time_t timep;char vipnum6; struct tm *p; time(&timep); p = gmtime(&timep);char bnum11;char ch;int i=0;float sum=0;/*保存所購(gòu)
27、買(mǎi)書(shū)的總費(fèi)*/v1=vhead;printf("nnnnnnnnnnnttt請(qǐng)輸入會(huì)員號(hào)碼:");scanf("%s",vipnum);while(v1!=NULL)if(strcmp(vipnum,v1->vnum)=0)break;else v1=v1->vnext;if(v1=NULL)printf("對(duì)不起,你所輸入的會(huì)員號(hào)不存在");if(p1=NULL|T=0)/*文件不存在或書(shū)庫(kù)中沒(méi)書(shū)*/printf("nnnnnnnnnntttt當(dāng)前書(shū)庫(kù)沒(méi)書(shū)!");printf("nntttt
28、按任意鍵返回:");rewind(stdin);/*清空緩沖區(qū)*/getch();return;p5=p4=head2=(struct book*)malloc(LEN);p4->next=NULL;system("cls");printf("nntt收費(fèi)標(biāo)準(zhǔn):一級(jí)會(huì)員打9折 二級(jí)會(huì)員打8折nnttt三級(jí)會(huì)員打7折 四級(jí)會(huì)員打6折 ");doprintf("nn請(qǐng)輸入所需購(gòu)買(mǎi)的書(shū)的書(shū)號(hào)(圖書(shū)編號(hào)):");/*書(shū)號(hào)唯一*/rewind(stdin);/*清空緩沖區(qū)*/gets(bnum);p1=head;while(p1
29、!=NULL)if(strcmp(p1->bnum,bnum)=0)break;else p1=p1->next;if(p1=NULL)system("cls");printf("nnnnnnnnnnt 沒(méi)有找到該書(shū)信息,可能書(shū)號(hào)輸入有誤,是否再次輸入書(shū)號(hào)?nn");printf("nnttt Y.是 N.否");rewind(stdin);/*清空緩沖區(qū)*/ch=getchar();if(ch='y'|ch='Y')system("cls");buy_flag=1;/*
30、防止在此函數(shù)中調(diào)用時(shí),search()函數(shù)執(zhí)行了清屏*/search();/*調(diào)用查詢,通過(guò)其他途徑確定書(shū)號(hào)*/while(1)printf("nnttt提示:若沒(méi)有您要找的書(shū),可按0結(jié)束!");printf("nntttt請(qǐng)重新輸入書(shū)號(hào):");rewind(stdin);/*清空緩沖區(qū)*/gets(bnum);if(strcmp(bnum,"0")=0) break;/*沒(méi)有需要的書(shū),結(jié)束輸入書(shū)號(hào)*/p1=head;while(p1!=NULL)if(strcmp(p1->bnum,bnum)=0) break;else p1
31、=p1->next;if(p1!=NULL) break;system("cls");if(p1!=NULL) if(p1->acount=0) printf("nntttt該書(shū)已售完!");while(p1!=NULL)if(strcmp(p1->bnum,bnum)=0)/*有相同書(shū)號(hào),循環(huán)提前結(jié)束*/break;else p1=p1->next;if(p1!=NULL&&p1->acount!=0)*p4=*p1;sum=sum+p4->price;p5=(struct book*)malloc(
32、LEN);p4->next=p5;p6=p4;p4=p5;p4->next=NULL;i+;/*記錄買(mǎi)的本數(shù)i,*/p1->acount=p1->acount-1;/*減去售過(guò)的書(shū)(本數(shù))*/p4=head2;system("cls");printf("nnt*當(dāng)前已選購(gòu)書(shū)狀態(tài)*");printf("nn書(shū)號(hào) 書(shū)名作者 售價(jià) 數(shù)量 總費(fèi)nn");while(p4->next!=NULL)/*顯示已買(mǎi)過(guò)的書(shū)*/printf("%-15s%-25s%-15s %.2f %d %.2fn",
33、p4->bnum,p4->bname,p4->author,p4->price,p4->acount,sum);p4=p4->next;printf("nntt 提示:可按N結(jié)束購(gòu)書(shū),按任意鍵繼續(xù)購(gòu)書(shū):");rewind(stdin);/*清空緩沖區(qū)*/ch=getchar();system("cls");while(ch!='n'&&ch!='N');/*結(jié)束購(gòu)書(shū)*/free(p4);p5->next=NULL;if(head2->next=NULL) pr
34、intf("nnnnnnnnnntttt您當(dāng)前沒(méi)有購(gòu)書(shū)!nn");elseprintf("nnnnnnnnnnttt 確認(rèn)購(gòu)買(mǎi)這%d本書(shū)嗎?n",i);printf("nnttt 按任意鍵確認(rèn),按N撤銷(xiāo)購(gòu)書(shū):");/*不想購(gòu)買(mǎi)時(shí),亦可撤銷(xiāo)*/rewind(stdin);/*清空緩沖區(qū)*/ch=getchar();if(ch='n'|ch='N')for(p4=head2;p4!=NULL;p4=p4->next)for(p1=head;p1!=NULL;p1=p1->next)if(strc
35、mp(p1->bnum,p4->bnum)=0)p1->acount=p1->acount+1; /*書(shū)未銷(xiāo)售,本數(shù)加上*/printf("nntttt 撤銷(xiāo)完畢!");elseprintf("nnttt您所購(gòu)買(mǎi)的書(shū)的總費(fèi)(打折前)為%.2fnn",sum);printf("nnttt你的會(huì)員等級(jí)為%d級(jí),可以享受%.1f折.nn",v1->level,(v1->discount)*10);printf("購(gòu)買(mǎi)書(shū)本的折后價(jià)為%.2f.nn",(v1->discount)*s
36、um);save_flag=1;/*書(shū)庫(kù)信息變動(dòng)標(biāo)志*/printf("%d.%d.%dn", (1900+p->tm_year), (1+p->tm_mon), p->tm_mday);rewind(stdin);/*清空緩沖區(qū)*/printf("nnttt 按回車(chē)鍵返回主菜單");getchar();void buy_by_feihuiyuan()/*非會(huì)員買(mǎi)書(shū)*/char bnum11;char ch;int i=0;float sum=0;/*保存所購(gòu)買(mǎi)書(shū)的總費(fèi)*/p1=head;if(p1=NULL|T=0)/*文件不存在或書(shū)
37、庫(kù)中沒(méi)書(shū)*/printf("nnnnnnnnnntttt當(dāng)前書(shū)庫(kù)沒(méi)書(shū)!");printf("nntttt按任意鍵返回:");rewind(stdin);/*清空緩沖區(qū)*/getch();return;p5=p4=head2=(struct book*)malloc(LEN);p4->next=NULL;doprintf("nn請(qǐng)輸入所需購(gòu)買(mǎi)的書(shū)的書(shū)號(hào)(圖書(shū)編號(hào)):");/*書(shū)號(hào)唯一*/rewind(stdin);/*清空緩沖區(qū)*/gets(bnum);p1=head;while(p1!=NULL)if(strcmp(p1->
38、;bnum,bnum)=0)break;else p1=p1->next;if(p1=NULL)system("cls");printf("nnnnnnnnnnt 沒(méi)有找到該書(shū)信息,可能書(shū)號(hào)輸入有誤,是否再次輸入書(shū)號(hào)?nn");printf("nnttt Y.是 N.否");rewind(stdin);/*清空緩沖區(qū)*/ch=getchar();if(ch='y'|ch='Y')system("cls");buy_flag=1;/*防止在此函數(shù)中調(diào)用時(shí),search()函數(shù)執(zhí)行
39、了清屏*/search();/*調(diào)用查詢,通過(guò)其他途徑確定書(shū)號(hào)*/while(1)printf("nnttt提示:若沒(méi)有您要找的書(shū),可按0結(jié)束!");printf("nntttt請(qǐng)重新輸入書(shū)號(hào):");rewind(stdin);/*清空緩沖區(qū)*/gets(bnum);if(strcmp(bnum,"0")=0) break;/*沒(méi)有需要的書(shū),結(jié)束輸入書(shū)號(hào)*/p1=head;while(p1!=NULL)if(strcmp(p1->bnum,bnum)=0) break;else p1=p1->next;if(p1!=NUL
40、L) break;system("cls");if(p1!=NULL) if(p1->acount=0) printf("nntttt該書(shū)已售完!");while(p1!=NULL)if(strcmp(p1->bnum,bnum)=0)/*有相同書(shū)號(hào),循環(huán)提前結(jié)束*/break;else p1=p1->next;if(p1!=NULL&&p1->acount!=0)*p4=*p1;sum=sum+p4->price;p5=(struct book*)malloc(LEN);p4->next=p5;p6=
41、p4;p4=p5;p4->next=NULL;i+;/*記錄買(mǎi)的本數(shù)i,*/p1->acount=p1->acount-1;/*減去售過(guò)的書(shū)(本數(shù))*/p4=head2;system("cls");printf("nnt*當(dāng)前已選購(gòu)書(shū)狀態(tài)*");printf("nn書(shū)號(hào) 書(shū)名作者 售價(jià) 數(shù)量 總費(fèi)nn");while(p4->next!=NULL)/*顯示已買(mǎi)過(guò)的書(shū)*/printf("%-15s%-25s%-15s %.2f %d %.2fn",p4->bnum,p4->bnam
42、e,p4->author,p4->price,p4->acount,sum);p4=p4->next;printf("nntt 提示:可按N結(jié)束購(gòu)書(shū),按任意鍵繼續(xù)購(gòu)書(shū):");rewind(stdin);/*清空緩沖區(qū)*/ch=getchar();system("cls");while(ch!='n'&&ch!='N');/*結(jié)束購(gòu)書(shū)*/free(p4);p5->next=NULL;if(head2->next=NULL) printf("nnnnnnnnnntt
43、tt您當(dāng)前沒(méi)有購(gòu)書(shū)!nn");elseprintf("nnnnnnnnnnttt 確認(rèn)購(gòu)買(mǎi)這%d本書(shū)嗎?n",i);printf("nnttt 按任意鍵確認(rèn),按N撤銷(xiāo)購(gòu)書(shū):");/*不想購(gòu)買(mǎi)時(shí),亦可撤銷(xiāo)*/rewind(stdin);/*清空緩沖區(qū)*/ch=getchar();if(ch='n'|ch='N')for(p4=head2;p4!=NULL;p4=p4->next)for(p1=head;p1!=NULL;p1=p1->next)if(strcmp(p1->bnum,p4->b
44、num)=0)p1->acount=p1->acount+1;/*書(shū)未銷(xiāo)售,本數(shù)加上*/printf("nntttt 撤銷(xiāo)完畢!");elseprintf("nnttt您所購(gòu)買(mǎi)的書(shū)的總費(fèi)為%.2fnn",sum);save_flag=1;/*書(shū)庫(kù)信息變動(dòng)標(biāo)志*/rewind(stdin);/*清空緩沖區(qū)*/printf("nnttt 按回車(chē)鍵返回主菜單");getchar();void search()/*查詢書(shū)庫(kù)信息*/int choice;p1=head;if(p1=NULL|T=0)/*文件不存在或書(shū)庫(kù)中沒(méi)書(shū)*/pr
45、intf("nnnntttt當(dāng)前書(shū)庫(kù)沒(méi)書(shū)!");printf("nntt按任意鍵返回:");rewind(stdin);/*清空緩沖區(qū)*/getch();system("cls");return;while(1)printf("n *查詢方式*nn");printf("1.通過(guò)書(shū)號(hào)查找nn");printf("2.通過(guò)書(shū)名查找nn");printf("3.通過(guò)作者查找nn");printf("0.退出圖書(shū)查詢nn");printf(&q
46、uot;nn請(qǐng)選擇一種查詢方式(03):");rewind(stdin);/*清空緩沖區(qū)*/scanf("%d",&choice);while(choice<0|choice>3)system("cls");print2();/*調(diào)用顯示查詢方式菜單*/printf("nttt輸入錯(cuò)誤!nn");printf("ttt請(qǐng)重新輸入:");rewind(stdin);/*清空緩沖區(qū)*/scanf("%d",&choice);switch(choice)case 1:system("cls");search_by_bnum();break;case 2:system("cls");search_by_bname()
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024高考物理一輪復(fù)習(xí)第七章靜電場(chǎng)第一節(jié)電場(chǎng)力的性質(zhì)學(xué)案新人教版
- 2024-2025學(xué)年高中數(shù)學(xué)第二章函數(shù)課時(shí)作業(yè)9函數(shù)的單調(diào)性含解析北師大版必修1
- 2025年惠州b2考貨運(yùn)資格證要多久
- 2025解除合同申請(qǐng)模板
- 2025防水涂料施工合同樣本
- 2025年南通駕駛員貨運(yùn)從業(yè)資格證模擬考試
- 2025家政公司合作協(xié)議范本與家政公司合同
- 油品購(gòu)銷(xiāo)行業(yè)深度研究報(bào)告
- 上海戲劇學(xué)院《國(guó)際貿(mào)易實(shí)務(wù)雙語(yǔ)》2023-2024學(xué)年第一學(xué)期期末試卷
- 2025生意轉(zhuǎn)讓合同書(shū)范文
- 《社會(huì)調(diào)查研究與方法》考試試題與答案(共22頁(yè)).doc
- 旅游高峰及節(jié)假日期間、災(zāi)情等特殊時(shí)期保潔的具體保證措施
- 我和我的祖國(guó)歌詞(打印版)
- 幼兒園生成課程與預(yù)成課程
- 生活用紙生產(chǎn)工藝流程
- 沙克龍系列參數(shù)表
- 外墻保溫監(jiān)理實(shí)施細(xì)則
- 華為性格測(cè)試攻略
- 河南省建筑業(yè)誠(chéng)信勞務(wù)企業(yè)評(píng)價(jià)辦法(試行)
- 壓力管道安裝機(jī)械設(shè)備操作規(guī)程講解
- 小學(xué)科學(xué)蘇教版四年級(jí)上冊(cè)第四單元《電路暗箱》教案
評(píng)論
0/150
提交評(píng)論