九九热最新网址,777奇米四色米奇影院在线播放,国产精品18久久久久久久久久,中文有码视频,亚洲一区在线免费观看,国产91精品在线,婷婷丁香六月天

歡迎來到裝配圖網(wǎng)! | 幫助中心 裝配圖網(wǎng)zhuangpeitu.com!
裝配圖網(wǎng)
ImageVerifierCode 換一換
首頁 裝配圖網(wǎng) > 資源分類 > DOC文檔下載  

C語言課程設(shè)計(jì) 酒店房間登記與計(jì)費(fèi)管理系統(tǒng)源代碼

  • 資源ID:30522043       資源大?。?span id="24d9guoke414" class="font-tahoma">76.01KB        全文頁數(shù):17頁
  • 資源格式: DOC        下載積分:15積分
快捷下載 游客一鍵下載
會(huì)員登錄下載
微信登錄下載
三方登錄下載: 微信開放平臺(tái)登錄 支付寶登錄   QQ登錄   微博登錄  
二維碼
微信掃一掃登錄
下載資源需要15積分
郵箱/手機(jī):
溫馨提示:
用戶名和密碼都是您填寫的郵箱或者手機(jī)號(hào),方便查詢和重復(fù)下載(系統(tǒng)自動(dòng)生成)
支付方式: 支付寶    微信支付   
驗(yàn)證碼:   換一換

 
賬號(hào):
密碼:
驗(yàn)證碼:   換一換
  忘記密碼?
    
友情提示
2、PDF文件下載后,可能會(huì)被瀏覽器默認(rèn)打開,此種情況可以點(diǎn)擊瀏覽器菜單,保存網(wǎng)頁到桌面,就可以正常下載了。
3、本站不支持迅雷下載,請(qǐng)使用電腦自帶的IE瀏覽器,或者360瀏覽器、谷歌瀏覽器下載即可。
4、本站資源下載后的文檔和圖紙-無水印,預(yù)覽文檔經(jīng)過壓縮,下載后原文更清晰。
5、試題試卷類文檔,如果標(biāo)題沒有明確說明有答案則都視為沒有答案,請(qǐng)知曉。

C語言課程設(shè)計(jì) 酒店房間登記與計(jì)費(fèi)管理系統(tǒng)源代碼

酒店房間登記與計(jì)費(fèi)管理系統(tǒng)源代碼#define M 80#include<stdlib.h>#include<stdio.h>#include<string.h>/*函數(shù)聲明*/void check_in(); /*登記入住函數(shù)*/void chamber(); /*入住情況函數(shù)*/void price(); /*當(dāng)前費(fèi)用函數(shù)*/void fee(); /*結(jié)賬退房函數(shù)*/void infor(); /*信息查詢函數(shù)*/void save(int); /*保存信息函數(shù)*/void read(int); /*讀取信息函數(shù)*/ void choice(); /*功能選擇函數(shù)*/int judge_year(int); /*判斷閏年函數(shù)*/void information(); /*輸出全部房間信息*/*結(jié)構(gòu)體*/struct timeint year; int mon;int date;int hour; struct room /*定義各房間信息的結(jié)構(gòu)體*/char name40;char ID18;int flag; /* 0-無人入住,1-按小時(shí)計(jì)費(fèi),2-按天計(jì)費(fèi) */long int deposit;time t2; /* 0-入住時(shí)間,1-當(dāng)前時(shí)間 */ roomM;char c140=0;char c218=0;/*主函數(shù)(主界面)*/void main()system("cls"); /*清屏*/system("color 4E");int n;printf("*");printf("* *");printf("*tt - 歡迎光臨萬豪酒店 - *");printf("* *");printf("*nn");printf("ttt 1. 登記入住 nn");printf("ttt 2. 入住情況 nn");printf("ttt 3. 當(dāng)前費(fèi)用 nn");printf("ttt 4. 結(jié)賬退房 nn");printf("ttt 5. 信息查詢 nn");printf("ttt 6. 全部信息 nn");printf("ttt 7. 退出系統(tǒng) nn");printf("請(qǐng)輸入您需要的服務(wù)的代碼:");scanf("%d",&n);while(n<1|n>7) printf("nn代碼輸入有誤,請(qǐng)您重新輸入:"); scanf("%d",&n); switch(n) /*根據(jù)輸入數(shù)字選擇功能*/ case 1:check_in();break; /*調(diào)用登記入住函數(shù)*/ case 2:chamber();break; /*調(diào)用房間情況函數(shù)*/ case 3:price();break; /*調(diào)用當(dāng)前費(fèi)用函數(shù)*/ case 4:fee();break; /*調(diào)用結(jié)賬退房函數(shù)*/ case 5:infor();break; /*調(diào)用信息查詢函數(shù)*/ case 6:information();break; /*調(diào)用全部信息函數(shù)*/ case 7:exit(0); /*調(diào)用退出系統(tǒng)函數(shù)*/*查看房間使用情況函數(shù)*/void chamber() system("cls"); /*清屏*/system("color 4E");printf("n*房間使用情況*n");int count=0;int i;int j;int k;int m;for(i=1;i<=80;i+) /*統(tǒng)計(jì)未入住房間總數(shù)*/read(i);if(roomi-1.flag=0) count+;printf("當(dāng)前未使用房間數(shù):%dnnn",count);chaxun:printf("請(qǐng)輸入你要查詢的房間號(hào)(1-40:單人間,41-80:雙人間):"); /*輸入房間號(hào)查詢房間入住情況*/scanf("%d",&m);while(m<1|m>80) printf("nn房間號(hào)輸入有誤,請(qǐng)您重新輸入:"); scanf("%d",&m); read(m);while(roomm-1.flag!=0) printf("nn對(duì)不起,該房間已有客人入住,請(qǐng)輸入其他房間號(hào):"); scanf("%d",&m);read(m);printf("nn該房間沒有客人入住,您要入住該房間嗎?(1-是,2-否):");scanf("%d",&j);while(j<1|j>2)printf("nn您的選擇輸入有誤,請(qǐng)您重新輸入:");scanf("%d",&j);if(j=1)check_in();elseprintf("nn您需要繼續(xù)查詢嗎?(1-是,2-否):");scanf("%d",&k);while(k<1|k>2)printf("nn您的選擇輸入有誤,請(qǐng)您重新輸入:");scanf("%d",&k);if(k=1)goto chaxun;elseprintf("nn");main();/*登記入住函數(shù)*/void check_in()system("cls"); /*清屏*/system("color 4E");int i;int j;int l;int k;int tab212=31,28,31,30,31,30,31,31,30,31,30,31,31,29,31,30,31,30,31,31,30,31,30,31;printf("n*登記入住*n");printf("請(qǐng)輸入您將入住的房間號(hào):");scanf("%d",&i);while(i<1|i>80) printf("nn房間號(hào)輸入有誤,請(qǐng)您重新輸入:"); scanf("%d",&i); read(i);while(roomi-1.flag!=0) /*判斷房間是否入住*/ printf("nn對(duì)不起,該房間已有客人入住,請(qǐng)輸入其他房間號(hào):"); scanf("%d",&i);read(i);printf("nn請(qǐng)輸入您的姓名:"); /*客人信息登記*/scanf("%s",roomi-1.name);j=strlen(roomi-1.name);while(j<0)printf("nn您的姓名輸入有誤,請(qǐng)您重新輸入:n"); scanf("%s",roomi-1.name); j=strlen(roomi-1.name); printf("nn請(qǐng)輸入您的證件號(hào)碼:");scanf("%s",roomi-1.ID);j=strlen(roomi-1.ID);while(j!=18)printf("nn您的證件號(hào)碼輸入有誤,請(qǐng)您重新輸入:n"); scanf("%s",roomi-1.ID); j=strlen(roomi-1.ID); if(i<=40) printf("nn您選擇的是單人間,該房間148元/天,8元/小時(shí)。nnn"); /*選擇計(jì)費(fèi)方式*/ printf("請(qǐng)選擇您的計(jì)費(fèi)方式(1:按小時(shí)計(jì)費(fèi),2:按天計(jì)費(fèi)):");else printf("nn您選擇的是雙人間,該房間128元/天,7元/小時(shí)。nnn"); printf("請(qǐng)選擇您的計(jì)費(fèi)方式(1:按小時(shí)計(jì)費(fèi),2:按天計(jì)費(fèi)):");scanf("%d",&roomi-1.flag);while(roomi-1.flag<0|roomi-1.flag>2)printf("nn您的計(jì)費(fèi)方式輸入有誤,請(qǐng)您重新輸入:");scanf("%d",&roomi-1.flag);printf("nn請(qǐng)按所示格式輸入您的入住時(shí)間(年-月-日-時(shí),時(shí)為24小時(shí)制):");scanf("%d-%d-%d-%d",&roomi-1.t0.year,&roomi-1.t0.mon,&roomi-1.t0.date,&roomi-1.t0.hour);l=judge_year(roomi-1.t0.year);while(roomi-1.t0.year<=0)|(roomi-1.t0.mon<=0|roomi-1.t0.mon>12)|(roomi-1.t0.date<=0|roomi-1.t0.date>tablroomi-1.t0.mon-1)|(roomi-1.t0.hour<0|roomi-1.t0.hour>=24)printf("nn您的入住時(shí)間輸入有誤,請(qǐng)按照格式重新輸入:");scanf("%d-%d-%d-%d",&roomi-1.t0.year,&roomi-1.t0.mon,&roomi-1.t0.date,&roomi-1.t0.hour);l=judge_year(roomi-1.t0.year);printf("nn請(qǐng)輸入您的押金數(shù)額:");scanf("%ld",&roomi-1.deposit);while(roomi-1.deposit<=0)printf("nn您的押金數(shù)額輸入有誤,請(qǐng)您重新輸入:n");scanf("%ld",&roomi-1.deposit);printf("nn您是否確定您的信息:(1-是,2-否):");scanf("%d",&k);while(k<1|k>2)printf("nn您的選擇輸入有誤,請(qǐng)您重新輸入:n");scanf("%d",&k);if(k=1)printf("nn您已登記入住成功,祝您在本店住得愉快!nn");save(i);choice();elsecheck_in();/*費(fèi)用查詢函數(shù)*/void price()system("cls"); /*清屏*/system("color 4E");printf("n*費(fèi)用查詢*n");int i;int j;int k;int tab212=31,28,31,30,31,30,31,31,30,31,30,31,31,29,31,30,31,30,31,31,30,31,30,31;int day=0;int hr=0;int total_hour;int total_day;long int price;printf("請(qǐng)輸入您的房間號(hào):");scanf("%d",&i);while(i<1|i>80) printf("nn您的房間號(hào)輸入有誤,請(qǐng)您重新輸入:"); scanf("%d",&i); read(i);while(roomi-1.flag=0) /*判斷房間是否已有客人入住*/printf("nn該房間無人入住,請(qǐng)重新輸入您的房間號(hào):");scanf("%d",&i);read(i);printf("nn請(qǐng)按所示格式輸入當(dāng)前時(shí)間(年-月-日-時(shí),時(shí)為24小時(shí)制):"); /*輸入當(dāng)前時(shí)間*/shuru:scanf("%d-%d-%d-%d",&roomi-1.t1.year,&roomi-1.t1.mon,&roomi-1.t1.date,&roomi-1.t1.hour);j=judge_year(roomi-1.t1.year);while(roomi-1.t1.year<=0)|(roomi-1.t1.mon<=0|roomi-1.t1.mon>12)|(roomi-1.t1.date<=0|roomi-1.t1.date>tabjroomi-1.t1.mon-1)|(roomi-1.t1.hour<0|roomi-1.t1.hour>=24)printf("nn您的入住時(shí)間輸入有誤,請(qǐng)按照格式重新輸入:");scanf("%d-%d-%d-%d",&roomi-1.t1.year,&roomi-1.t1.mon,&roomi-1.t1.date,&roomi-1.t1.hour);j=judge_year(roomi-1.t1.year);if(roomi-1.t0.mon!=roomi-1.t1.mon)for(k=roomi-1.t0.mon+1;k<roomi-1.t1.mon;k+)day+=tabjk-1;day+=tabjroomi-1.t0.mon-1-roomi-1.t0.date+roomi-1.t1.date;elseday+=roomi-1.t1.date-roomi-1.t0.date;hr=roomi-1.t1.hour-roomi-1.t0.hour;if(roomi-1.flag=1) /*根據(jù)房間類型和計(jì)費(fèi)方式計(jì)算費(fèi)用*/if(hr<0)total_hour=day*24-hr;elsetotal_hour=day*24+hr;if(i<=40)price=8*total_hour;elseprice=7*total_hour;if(roomi-1.flag=2)while(hr<0)day=day-1;hr=hr+24;if(hr<8)total_day=day;elsetotal_day=day+1;if(i<=40)price=148*total_day;elseprice=128*total_day;while(price<0)printf("您的時(shí)間輸入有誤,請(qǐng)重新輸入:");goto shuru;printf("nn當(dāng)前費(fèi)用為:%ld元.nn",price); /*輸出當(dāng)前費(fèi)用*/choice();/*結(jié)賬退房函數(shù)*/void fee()system("cls");system("color 4E");printf("n*結(jié)賬退房*n");int i;int j;int k;int tab212=31,28,31,30,31,30,31,31,30,31,30,31,31,29,31,30,31,30,31,31,30,31,30,31; int day=0;int hr=0;int total_hour;int total_day;long int price;long int fee;printf("請(qǐng)輸入您的房間號(hào):");scanf("%d",&i);while(i<1|i>80) printf("nn您的房間號(hào)輸入有誤,請(qǐng)您重新輸入:"); scanf("%d",&i); read(i);while(roomi-1.flag=0) /*判斷房間是否有客人入住*/printf("nn該房間無人入住,請(qǐng)重新輸入您的房間號(hào):");scanf("%d",&i);read(i);printf("nn請(qǐng)按所示格式輸入當(dāng)前時(shí)間(年-月-日-時(shí),時(shí)為24小時(shí)制):"); /*輸入當(dāng)前時(shí)間*/shuru:scanf("%d-%d-%d-%d",&roomi-1.t1.year,&roomi-1.t1.mon,&roomi-1.t1.date,&roomi-1.t1.hour);j=judge_year(roomi-1.t1.year);while(roomi-1.t1.year<=0)|(roomi-1.t1.mon<=0|roomi-1.t1.mon>12)|(roomi-1.t1.date<=0|roomi-1.t1.date>tabjroomi-1.t1.mon-1)|(roomi-1.t1.hour<0|roomi-1.t1.hour>=24)printf("nn您的入住時(shí)間輸入有誤,請(qǐng)按照格式重新輸入:");scanf("%d-%d-%d-%d",&roomi-1.t1.year,&roomi-1.t1.mon,&roomi-1.t1.date,&roomi-1.t1.hour);j=judge_year(roomi-1.t1.year);if(roomi-1.t0.mon!=roomi-1.t1.mon)for(k=roomi-1.t0.mon+1;k<roomi-1.t1.mon;k+)day+=tabjk-1;day+=tabjroomi-1.t0.mon-1-roomi-1.t0.date+roomi-1.t1.date;elseday+=roomi-1.t1.date-roomi-1.t0.date;hr=roomi-1.t1.hour-roomi-1.t0.hour;if(roomi-1.flag=1) /*根據(jù)房間類型和計(jì)費(fèi)方式計(jì)算費(fèi)用*/if(hr<0)total_hour=day*24-hr;elsetotal_hour=day*24+hr;if(i<=40)price=8*total_hour;elseprice=7*total_hour;if(roomi-1.flag=2)while(hr<0)day=day-1;hr=hr+24;if(hr<8)total_day=day;elsetotal_day=day+1;if(i<=40)price=148*total_day;elseprice=128*total_day;while(price<0)printf("您的時(shí)間輸入有誤,請(qǐng)重新輸入:");goto shuru;fee=price-roomi-1.deposit;if(fee>0) /*輸出最后的總費(fèi)用*/printf("nn扣除押金后,您另需支付費(fèi)用%ld元。",fee);else if(fee=0)printf("nn您所交納的押金恰好能夠支付您的住房費(fèi)用,您無需另行交錢。");elseprintf("nn您所交納的押金還未使用完,本賓館應(yīng)支付您余額%ld元。",-fee);printf("nnn您已退房成功,感謝您的光臨,我們下次再見!nn");roomi-1.flag=0;strcpy(roomi-1.name,c1);strcpy(roomi-1.ID,c2);roomi-1.deposit=0;roomi-1.t0.year=0;roomi-1.t0.mon=0;roomi-1.t0.date=0;roomi-1.t0.hour=0;roomi-1.t1.year=0;roomi-1.t1.mon=0;roomi-1.t1.date=0;roomi-1.t1.hour=0;save(i);choice();/*信息查詢函數(shù)*/void infor()system("cls");system("color 4E");printf("n*信息查詢*n");int i;printf("請(qǐng)輸入您的房間號(hào):");scanf("%d",&i);while(i<1|i>80) printf("nn您的房間號(hào)輸入有誤,請(qǐng)您重新輸入:"); scanf("%d",&i); read(i);while(roomi-1.flag=0) /*判斷房間是否有客人入住*/ printf("nn該房間無人入住,請(qǐng)重新輸入您的房間號(hào):");scanf("%d",&i);read(i);printf("nn您的信息如下:nnn"); /*輸出客人信息*/printf("姓名:");puts(roomi-1.name);printf("nn");printf("證件號(hào)碼:");puts(roomi-1.ID);printf("nn");printf("房間類型:");if(i<=40)printf("單人間nnn");elseprintf("雙人間nnn");printf("計(jì)費(fèi)方式:");if(roomi-1.flag=1)printf("按小時(shí)計(jì)費(fèi)nnn");elseprintf("按天計(jì)費(fèi)nnn");printf("入住時(shí)間:");printf("%d年%d%月%d日%d時(shí)nnn",roomi-1.t0.year,roomi-1.t0.mon,roomi-1.t0.date,roomi-1.t0.hour);printf("押金數(shù)額:");printf("%ld元nn",roomi-1.deposit);choice();/*功能選擇函數(shù)*/void choice()printf("n*功能選擇*n");printf("ttt 1. 入住情況 n");printf("ttt 2. 登記入住 n");printf("ttt 3. 當(dāng)前費(fèi)用 n");printf("ttt 4. 結(jié)賬退房 n");printf("ttt 5. 信息查詢 n");printf("ttt 6. 回主界面 n");printf("ttt 7. 全部信息 n");printf("ttt 8. 退出系統(tǒng) n");int k;printf("請(qǐng)選擇您需要的服務(wù):"); /*服務(wù)選擇*/scanf("%d",&k);while(k<1|k>8) printf("nn代碼輸入有誤,請(qǐng)您重新輸入:"); scanf("%d",&k); switch(k) case 1:chamber();break; /*調(diào)用房間情況函數(shù)*/ case 2:check_in();break; /*調(diào)用登記入住函數(shù)*/ case 3:price();break; /*調(diào)用當(dāng)前費(fèi)用函數(shù)*/ case 4:fee();break; /*調(diào)用結(jié)賬退房函數(shù)*/ case 5:infor();break; /*調(diào)用信息查詢函數(shù)*/ case 6:main();break; /*調(diào)用主函數(shù)*/ case 7:information();break; /*調(diào)用全部信息函數(shù)*/ case 8:exit(0); /*調(diào)用退出系統(tǒng)函數(shù)*/*判斷閏年函數(shù)*/int judge_year(int x) if(x%4=0)&&(x%100!=0)|(x%400=0)return(1);elsereturn(0);/*全部信息查詢*/void information() system("cls");printf("n*全部信息*n");int i;int j;int k;int year;int month;int date;int hour;int year1;int month1;int day1;int hour1;int tab212=31,28,31,30,31,30,31,31,30,31,30,31,31,29,31,30,31,30,31,31,30,31,30,31;int day=0;int hr=0;int total_hour;int total_day;long int price;printf("nn請(qǐng)按所示格式輸入當(dāng)前時(shí)間(年-月-日-時(shí),時(shí)為24小時(shí)制):"); /*輸入當(dāng)前時(shí)間*/scanf("%d-%d-%d-%d",&year,&month,&date,&hour);j=judge_year(year);for(i=1;i<=80;i+)read(i);if(roomi-1.flag=0)printf("房間%d無人入住。n",i);if(i<=40)printf("房間類型:?jiǎn)稳碎g。n");printf("單價(jià):148元/天,8元/小時(shí)。n");elseprintf("房間類型:雙人間。n");printf("單價(jià):128元/天,7元/小時(shí)。n");elseyear1=year-roomi-1.t0.year;month1=month-roomi-1.t0.mon;day1=date-roomi-1.t0.date;hour1=hour-roomi-1.t0.hour;while(hour1<0)day1=day1-1;hour1=hour1+24;printf("房間%d客戶信息如下:n",i);printf("姓名:");puts(roomi-1.name);printf("證件號(hào)碼:");puts(roomi-1.ID);printf("房間類型:");if(i<=40)printf("單人間n");printf("單價(jià):148元/天,8元/小時(shí)。n");elseprintf("雙人間n");printf("單價(jià):128元/天,7元/小時(shí)。n");printf("計(jì)費(fèi)方式:");if(roomi-1.flag=1)printf("按小時(shí)計(jì)費(fèi)n");elseprintf("按天計(jì)費(fèi)n");printf("入住時(shí)間:");printf("%d年%d%月%d日%d時(shí)n",roomi-1.t0.year,roomi-1.t0.mon,roomi-1.t0.date,roomi-1.t0.hour);printf("已入住時(shí)間:%d年%d月%d天%d小時(shí)。n",year1,month1,day1,hour1);printf("押金數(shù)額:");printf("%ld元",roomi-1.deposit);if(roomi-1.t0.mon!=month)for(k=roomi-1.t0.mon+1;k<month;k+)day+=tabjk-1;day+=tabjroomi-1.t0.mon-1-roomi-1.t0.date+date;elseday+=date-roomi-1.t0.date;hr=hour-roomi-1.t0.hour;if(roomi-1.flag=1) /*根據(jù)房間類型和計(jì)費(fèi)方式計(jì)算費(fèi)用*/if(hr<0)total_hour=day*24-hr;elsetotal_hour=day*24+hr;if(i<=40)price=8*total_hour;elseprice=7*total_hour;if(roomi-1.flag=2)while(hr<0)day=day-1;hr=hr+24;if(hr<8)total_day=day;elsetotal_day=day+1;if(i<=40)price=148*total_day;elseprice=128*total_day;printf("n當(dāng)前費(fèi)用為:%ld元.n",price); /*輸出當(dāng)前費(fèi)用*/day=0;hr=0; /*時(shí)間清零*/ choice();/*保存信息函數(shù)*/void save(int x)int i;char c;FILE *fp;if(fp=fopen("酒店房間登記與計(jì)費(fèi)管理系統(tǒng)信息存儲(chǔ)文件.txt","wb+")=NULL)printf("無法打開文件。nnn");printf("請(qǐng)按任意鍵返回主菜單,并選擇“退出系統(tǒng)”選項(xiàng),在修改錯(cuò)誤后再運(yùn)行此系統(tǒng)。nn");scanf("%s",&c);main();for(i=1;i<=x;i+) if(fwrite(&roomi-1,sizeof(struct room),1,fp)!=1) printf("文件寫入錯(cuò)誤!nn"); fclose(fp);/*讀取信息函數(shù)*/void read(int y)int i=1;char c;FILE *fp;if(fp=fopen("酒店房間登記與計(jì)費(fèi)管理系統(tǒng)信息存儲(chǔ)文件.txt","rb+")=NULL)printf("nn無法打開文件。nnn");printf("請(qǐng)按任意鍵返回主菜單,并選擇“退出系統(tǒng)”選項(xiàng),在修改錯(cuò)誤后再運(yùn)行此系統(tǒng)。nn");scanf("%s",&c);main();elsedofread(&roomi-1,sizeof(struct room),1,fp);i+;while(feof(fp)=0);fclose(fp);第 17 頁

注意事項(xiàng)

本文(C語言課程設(shè)計(jì) 酒店房間登記與計(jì)費(fèi)管理系統(tǒng)源代碼)為本站會(huì)員(仙***)主動(dòng)上傳,裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)上載內(nèi)容本身不做任何修改或編輯。 若此文所含內(nèi)容侵犯了您的版權(quán)或隱私,請(qǐng)立即通知裝配圖網(wǎng)(點(diǎn)擊聯(lián)系客服),我們立即給予刪除!

溫馨提示:如果因?yàn)榫W(wǎng)速或其他原因下載失敗請(qǐng)重新下載,重復(fù)下載不扣分。




關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號(hào):ICP2024067431號(hào)-1 川公網(wǎng)安備51140202000466號(hào)


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺(tái),本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請(qǐng)立即通知裝配圖網(wǎng),我們立即給予刪除!