C語(yǔ)言程序設(shè)計(jì)教程 課后習(xí)題參考答案

上傳人:仙*** 文檔編號(hào):135915341 上傳時(shí)間:2022-08-16 格式:DOCX 頁(yè)數(shù):38 大小:67.19KB
收藏 版權(quán)申訴 舉報(bào) 下載
C語(yǔ)言程序設(shè)計(jì)教程 課后習(xí)題參考答案_第1頁(yè)
第1頁(yè) / 共38頁(yè)
C語(yǔ)言程序設(shè)計(jì)教程 課后習(xí)題參考答案_第2頁(yè)
第2頁(yè) / 共38頁(yè)
C語(yǔ)言程序設(shè)計(jì)教程 課后習(xí)題參考答案_第3頁(yè)
第3頁(yè) / 共38頁(yè)

下載文檔到電腦,查找使用更方便

10 積分

下載資源

還剩頁(yè)未讀,繼續(xù)閱讀

資源描述:

《C語(yǔ)言程序設(shè)計(jì)教程 課后習(xí)題參考答案》由會(huì)員分享,可在線閱讀,更多相關(guān)《C語(yǔ)言程序設(shè)計(jì)教程 課后習(xí)題參考答案(38頁(yè)珍藏版)》請(qǐng)?jiān)谘b配圖網(wǎng)上搜索。

1、C語(yǔ)言程序設(shè)計(jì)教程課后習(xí)題參考答案習(xí)題11. (1)編譯、鏈接 .exe(2)函數(shù) 主函數(shù)(或main函數(shù))(3)編輯編譯鏈接2. (1)-(5):DDBBC(6)-(10):ABBBC3. (1)答:C語(yǔ)言簡(jiǎn)潔、緊湊,使用方便、靈活;C語(yǔ)言是高級(jí)語(yǔ)言,同時(shí)具備了低級(jí)語(yǔ)言的特征;C語(yǔ)言是結(jié)構(gòu)化程序設(shè)計(jì)語(yǔ)言,具有結(jié)構(gòu)化的程序控制語(yǔ)句;C語(yǔ)言有各種各樣的數(shù)據(jù)類(lèi)型;C語(yǔ)言可移植性好;生成目標(biāo)代碼質(zhì)量高,程序執(zhí)行效率高。(2)編輯、編譯、鏈接、執(zhí)行(3)一個(gè)C程序由一或多個(gè)函數(shù)組成,一函數(shù)若干條語(yǔ)句構(gòu)成,每條語(yǔ)句的末尾必須以分號(hào)結(jié)束。(4)標(biāo)識(shí)符,關(guān)鍵字,運(yùn)算符,分隔符,常量,注釋符等4. 從鍵盤(pán)輸入

2、一個(gè)雙精度小數(shù),打印出它的余弦值。#include #include main( )double x;scanf(“%lf”, &x);printf(“%lfn”, cos(x) );第2章1.(1)BDE、ACFG(2)D(3)C(4)C2(1)錯(cuò)(2)錯(cuò)(3)錯(cuò)(4)對(duì)(5)錯(cuò)3. (1)a=3,b=-27(2)a=11,b=6,c=6(3)3(4)1010110(5)-998(6)1)202)83)704)05)06)04.(1)#include main( )double r, h ,v;r = 2.5;h = 3.5;v = 3.14*r*r*h;printf(“v=%lfn”, v

3、);(2)#include main( )char ch;ch = getchar( );printf(“%cn”, ch + 32);(3)#include main( )printf(“ *n”);printf(“ *n”);printf(“ *n”);printf(“*n”);(4)#include main( )double x;scanf(“%lf”, &x);printf(“%d , %lfn”, (int)x, x (int)x );(5)#include main( )double a=3, b=5;double result = (-2 * a + ( 4*a b )/( 2

4、*a + b ) )/( (a - 4*b)/(a + b) );printf(“%lfn”, result);習(xí)題31.(1)D(2)AD(3)C(4)B(5)A(6)-(10):BDACB2.(1)3.141593,3.1416,3.142(2)c=K(3)| 123.46|,|123 |(4)x= 1.23,y= 50.00(5)03.(1)scanf(%f”, c); 改為:scanf(“%f”, &c);f = (9/5)*c+32;改為:f = (9.0/5)*c + 32;printf(“攝氏溫度%f度相當(dāng)于華氏溫度%f度”, &c, &f); 改為:printf(“攝氏溫度%f

5、度相當(dāng)于華氏溫度%f度”, c, f);(2)補(bǔ)充定義:int h;h = 500/60改為: h = 500 / 60;m = 500% 60 改為: m = 500%60;printf(“500分鐘是%d小時(shí)%d分鐘,”&h, &m); 改為:printf(“500分鐘是%d小時(shí)%d分鐘” , h, m);4.(1)#includemain( )char x,y;scanf(“%c%c”, &x, &y);printf(“%dn”, (x-0) + (y-0) );(2)#include main( )char x, y;char tmp;printf(“Input two charact

6、ers:”);scanf(“%c%c”, &x, &y);printf(“Before swap: x=%c, y=%cn”, x, y);tmp = x;x = y;y = tmp;printf(“After swap: x=%c, y=%cn”, x, y);(3)#include main( )char ch;ch = getchar( );printf(“%cn”, ch - 32);第4章1.(1)-(5):CAACA2.(1)BBB(2)AAABBBCCC(3)end(4)d=20(5)s=2,t=3(6)first third(7)y=0y=5y=10y=53.(1)yzxzx=

7、A & ch=a&ch2&x-1&x=2(4)t=x;x=y;y=t;4.(1)#include main( )int x, y , z, t;scanf(“%d%d%d”, &x, &y, &z);if ( xy ) t=x; x=y; y=t;if( x z )t = x; x = z; z= t; if( y z )t = y; y= z; z = t;printf(“%d %d %dn”, x, y ,z);(2)#include main( )int score;scanf(“%d”, &score);if ( score 100 )printf(“成績(jī)不合理n”);else if(

8、 score=90 )printf(“優(yōu)秀n”);else if( score=80 )printf(“良好n”);else if( score = 70 )printf(“中等n”);else if( score = 60 )printf(“及格n”);elseprintf(“不及格n”);(3)#include main( )int n;int g,s,b,q;/各位上的數(shù)值scanf(“%d”, &n);g = n%10;/個(gè)位s = n/10%10;/十位b = n/100%10;/百位q = n/1000%10;/千位if( n 10 ) /一位數(shù)printf(“%dn”, 1);/

9、位數(shù)printf(“%dn”, g); /各位上的數(shù)值else if ( n 100 ) /兩位數(shù)printf(“%dn”, 2);/位數(shù)printf(“%d %dn”, g,s);else if ( n 1000 ) /三位數(shù)printf(“%dn”, 3);/位數(shù)printf(“%d %d %dn”, g, s, b);else if ( n 10000 ) /四位數(shù)printf(“%dn”, 4);/位數(shù)printf(“%d %d %d %dn”, g, s, b, q);(4)#include main( )int n;scanf(“%d”, &n);if( n % 3=0 & n%5

10、=0 & n%7=0 )printf(“能同時(shí)被3、5、7整除n”);else if( n%3=0 & n%5=0)printf(“能被3和5整除n”);else if( n%3=0 & n%7=0 )printf(“能被3和7整除n”);else if( n%5=0 & n%7=0 )printf(“能被5和7整除n”);else if( n%3=0 | n%5=0 | n%7=0 )if( n%3=0 )printf(“能被3整除n”);else if( n%5=0 )printf(“能被5整除n”);elseprintf(“能被7整除n”);elseprintf(“不能被3、5、7中任一

11、個(gè)數(shù)整除n”);(5)#include main( )int carType;/車(chē)型。1代表夏利;2代表富康;3代表桑塔納double xiali = 2.1;/每公里價(jià)格double fukang = 2.4;double sangtana = 2.7;double distance; /距離double totalMoney;/總的收費(fèi)printf(請(qǐng)輸入您乘坐的車(chē)型:1代表夏利;2代表富康;3代表桑塔納:);scanf(%d, &carType);printf(請(qǐng)輸入您乘車(chē)的總路程:);scanf(%lf, &distance);if( carType = 1)/夏利if( distan

12、ce 3 )totalMoney = 7.0;elsetotalMoney = 7 + xiali * (distance 3);else if( carType = 2 ) /富康if( distance 3 )totalMoney = 8.0;elsetotalMoney = 8 + fukang * (distance 3);else if( carType = 3 ) /富康if( distance 3 )totalMoney = 9.0;elsetotalMoney = 9 + sangtana * (distance 3);printf((四舍五入)您的車(chē)費(fèi)為:%.0lfn, to

13、talMoney );(6)#include main( )double a, b, c;scanf(“%lf%lf%lf”, &a, &b, &c);if( a+bc & b+ca & c+ab )if( a=b & b=c )printf(“等邊三角形n”);else if( a=b | b= c | c=a )printf(“等腰三角形n”);elseprintf(“一般三角形n”);elseprintf(“不能構(gòu)成三角形n”);第5章1.(1)C(2)C(3)K=36(4)C(5)B2.(1) 3次(2) x=1 & x=200&x210(3) e = 0(4) 6次(5) 103.(

14、1) 20,10(2) 16,0(3) 7BAB4BAB1BC(4) ABABABC(5) * * *4.(1) a != b(2) n / 10(3) scanf(“%d”, &a);5. (3) 行int fac = 1, sum = 0;6.(1)#include main( )char ch;int alpha=0, space=0, digit=0, other=0;while( (ch=getchar( ) ) != n )if( ch=A&ch=a&ch=0 & ch=9)digit+;else if( = ch )space+;elseother+;printf(“%d %d

15、%d %dn”, alpha, digit, space, other );(2)#include main( )int m20, m10;for(m20=1; m205; m20+)for(m10 = 1; m1010; m10+)if( 20*m20+10*m10 = 100 )printf(“%d, %dn”, m20, m10 );(3)#include main( )int x, y, z;for(x=0; x10; x+)for(y=0; y10; y+)for(z=0; z10; z+)if( x*100+y*10+z + y*100+z*10+z = 532 )printf(“

16、%d %d %dn”, x, y, z);(4)#include main( )int row, spaceCount,starCount;int n;scanf(%d, &n);for( row = 1; row = n; +row)for( spaceCount = 1;spaceCount = n - row ;+ spaceCount)printf( ); /打印出某行上星號(hào)前的空格for( starCount = 1;starCount = 2* row - 1;+starCount )printf(*); /打印出某行上的所有星號(hào)printf(n); /換行/打印下半部分for(r

17、ow=1; rown; row+)for( spaceCount = 1;spaceCount = row ;+ spaceCount)printf( ); /打印出某行上星號(hào)前的空格for( starCount = 1;starCount = 2*(n- row) - 1;+starCount )printf(*); /打印出某行上的所有星號(hào)printf(n); /換行(5)#include main( )int n;int g,s,b,q;int t;scanf(%d, &n);g = n % 10;s = n / 10 % 10;b = n /100 % 10;q = n/ 1000%1

18、0;g = (g+5)%10;s = (s+5)%10;b = (b+5)%10;q = (q+5)%10;/第1位和第4位交換t = g; g = q; q = t;/第2位和第3位交換t = s; s = b; b = t;printf(%d%d%d%dn, q,b,s,g);第6章1. (1)無(wú)返回值(2)double2(3)無(wú)限循環(huán)(死循環(huán))(4)result = 7202.(1)#include void print1( int n );main( )int n;scanf(%d, &n);print1( n );void print1( int n )int row, col;fo

19、r(row = 1; row=n; row+)for(col=1; col=row; col+)printf(#);printf(n);(2)#include void print2( int n );main( )int n;scanf(%d, &n);print2( n );void print2( int n )int row, col;for(row = 1; row=n; row+)for(col=1; col=2*row-1; col+)printf();printf(n);(3)#include int yearOld(int byear, int bmonth, int bda

20、y, int nyear, int nmonth, int nday);main( )int nowy,nowm,nowd;int by, bm, bd;int age;printf(請(qǐng)輸入生日:);scanf(%d%d%d, &by, &bm, &bd);printf(請(qǐng)輸入現(xiàn)在日期:);scanf(%d%d%d, &nowy, &nowm, &nowd);age= yearOld(by,bm,bd,nowy,nowm,nowd);printf(age=%dn, age);int yearOld(int byear, int bmonth, int bday, int nyear, int

21、nmonth, int nday)int age;age = nyear - byear;if( nmonthbday)age-;return age;(4)#include int sum( int n );main( )int n,s;scanf(%d, &n);s = sum( n );printf(s=%dn, s);int sum( int n )int s=0;while ( n )s += n % 10;n /= 10;return s;(5)#include double sumfac( int n );main( )int n;scanf(%d, &n);printf(%.0

22、lfn, sumfac( n ) );double sumfac( int n )double f=1.0, s = 0.0;int i;for(i=1;i=n; i+)f *= i;s += f;return f;(6)#include int gcd(int m , int n);main( )int m, n;scanf(%d%d, &m, &n);printf(%dn, gcd(m ,n) );int gcd(int m, int n)int t,r;if( m n ) t = m; m= n; n = t; r = m % n;while( r )m = n; n = r;r = m

23、 % n;return n;(7)#include int gcd(int m , int n);int lcm(int m, int n);main( )int m, n;scanf(%d%d, &m, &n);printf(%dn, lcm(m ,n) );int gcd(int m, int n)int t,r;if( m n ) t = m; m= n; n = t; r = m % n;while( r )m = n; n = r;r = m % n;return n;int lcm(int m, int n)return m*n/gcd(m,n);(8)#include doubl

24、e mypower(double x, int y);main( )double x; int y;scanf(%lf%d, &x, &y);printf(%lfn, mypower(x,y) );double mypower(double x, int y)int i;double f=1.0;for(i=1; i=y; i+)f *= x;return f;第7章1.(1)6(2)5(3)不能(4)int a32=1,2, 3,4, 5,6 ;(5)69(6)abcG2.(1)#include void reverse( int a , int n );int main( )int arr

25、ay10=0;int i;printf(“請(qǐng)輸入10個(gè)整數(shù):”);for( i=0; i10; i+)scanf(“%d”, &arrayi);reverse( array, 10); /調(diào)用函數(shù)逆序存儲(chǔ)數(shù)組中的數(shù)據(jù)printf(“逆序后的元素為:n”);for( i=0; i10; i+)printf(“%5d”, arrayi);printf(“n”);return 0;void reverse( int a , int n )int i;int tmp;for( i=0;in/2;+i)tmp = ai;ai = an-i-1;an-i-1 = tmp;(2)#include #incl

26、ude void reverseStr( char str );main( )char s100;gets( s );reverseStr( s );puts( s );void reverseStr( char str )int i,j;char t;i=0;j=strlen(str)-1;while( i j )t = stri;stri = strj;strj = t;i+;j-;(3)#include int copyTo(int s1, int n, int s2 );main( )int s110, s210;int i,count;for(i=0; i10; i+)scanf(%

27、d, &s1i);count = copyTo(s1, 10, s2);for(i=0; icount; i+)printf(%d , s2i );printf(n);int copyTo(int s1, int n, int s2 )int i, j=0;for(i=0; in; i+)if( s1i % 2 )s2j+ = s1i;return j;(4)#include void copyToStr(char str1 , char str2 );main( )char s1100, s2100;gets(s1);copyToStr( s1, s2 );puts(s2);void cop

28、yToStr(char str1 , char str2 )int i=0,j=0;while( str1i != 0 )if( str1i=a&str1i=z )str2j = str1i;j+;i+;str2j = 0;return j;(5)#include void deleteAll( char str , char ch);main( )char s100, ch;gets( s );ch = getchar( );deleteAll( s, ch );puts( s );void deleteAll( char str , char ch)int i, j;i = 0; j =

29、0;while( stri )if( stri != ch )strj+ = stri;i+;strj = 0;(6)#include void replaceAll(char str , int ch1, char ch2);main( )char s100, c1, c2;gets( s );c1 = getchar( );c2 = getchar( );replaceAll( s, c1, c2 );puts( s );void replaceAll(char str , int ch1, char ch2)int i;i = 0;while( stri )if( stri = ch1

30、)stri = ch2;i+;(7)#include int transformToBin( int dnum, int bin ) ;int main( )int array32=0; /保存轉(zhuǎn)換后的二進(jìn)制數(shù)int num; /待轉(zhuǎn)換的整數(shù)int cc;/最后得到的二進(jìn)制總共多少位printf(“請(qǐng)輸入一個(gè)整數(shù):”);scanf(“%d”, &num);cc = transformToBin( num, array ); /調(diào)用轉(zhuǎn)換函數(shù)cc-; /往回退一個(gè)元素下標(biāo),使cc指向最后一個(gè)元素for( ; cc=0;cc- ) /輸出轉(zhuǎn)換后的二進(jìn)制數(shù)printf(“%d”, arraycc);p

31、rintf(“n”);return 0;int transformToBin( int dnum, int bin )int count = 0;while ( dnum ) /當(dāng)dnum還未轉(zhuǎn)換完畢 bincount+ = dnum % 2;/余數(shù)保留到數(shù)組對(duì)應(yīng)元素中dnum /= 2;/數(shù)本身除2return count;(8)#include int transformToHex( int dnum, char hex ) ;int main( )char array32; /保存轉(zhuǎn)換后的進(jìn)制數(shù)int num; /待轉(zhuǎn)換的整數(shù)int cc;/最后得到的進(jìn)制總共多少位printf(請(qǐng)輸入一

32、個(gè)整數(shù):);scanf(%d, &num);cc = transformToHex( num, array ); /調(diào)用轉(zhuǎn)換函數(shù)cc-; /往回退一個(gè)元素下標(biāo),使cc指向最后一個(gè)元素for( ; cc=0;cc- ) /輸出轉(zhuǎn)換后的進(jìn)制數(shù)printf(%c, arraycc);printf(n);return 0;int transformToHex( int dnum, char hex )int count = 0;int t;while ( dnum ) /當(dāng)dnum還未轉(zhuǎn)換完畢 t = dnum % 16;if( t 10 )hexcount = t+0;/余數(shù)保留到數(shù)組對(duì)應(yīng)元素中el

33、se hexcount = t-10+A;count+;dnum /= 16;/數(shù)本身除16return count;(9)#include #include #include #define M 5 /行#define N 6 /列void generate( int a N, int row, int col );void display( int aN, int row, int col);void getMaxEveryRow(int aN, int row, int col, int y);main( )int arrMN, yM=0;int i;generate(arr, M, N

34、);display(arr, M, N);getMaxEveryRow(arr,M,N,y);/輸出最大值for(i=0; iM; i+)printf(%d , yi);printf(n);void generate( int a N, int row, int col )int i,j;srand( time(NULL) );for(i=0; iM; i+)for(j=0; jN; j+)aij = rand( )%101;void display( int aN, int row, int col)int i,j;for(i=0; iM; i+)for(j=0; jN; j+)printf

35、(%4d, aij);printf(n);void getMaxEveryRow(int aN, int row, int col,int y)int i,j;for(i=0; iM; i+)yi = ai0;for(j=1; jN; j+)if( yi aij )yi = aij;(10)#include #include #include #define M 5 /行#define N 6 /列void generate( int a N, int row, int col );void display( int aN, int row, int col);void getMinEvery

36、Col(int aN, int row, int col);main( )int arrMN;int i;generate(arr, M, N);display(arr, M, N);getMinEveryCol(arr,M,N);/輸出最小值for(i=0; iN; i+)printf(%d , arr0i);printf(n);void generate( int a N, int row, int col )int i,j;srand( time(NULL) );for(i=1; iM; i+)for(j=0; jN; j+)aij = rand( )%101;void display(

37、 int aN, int row, int col)int i,j;for(i=1; iM; i+)for(j=0; jN; j+)printf(%4d, aij);printf(n);void getMinEveryCol(int aN, int row, int col)int i,j;for(i=0; iN; i+)a0i = a1i;for(j=2; j aji )a0i = aji;第8章1. (1)局部(2)void(3)autostaticexternregister(4)auto(5)return(6)遞歸(7)求 1!+2!+3!+4!+5!(8)注意全局變量和局部變量的區(qū)別

38、2.(1)#include #include double xc( double x, double y );main( )double a, b;double c;scanf(“%lf%lf”, &a, &b);c = xc( a, b );printf(“ %lfn”, c);double xc( double x, double y )return sqrt( x*x+y*y );(2)#include long seconds(int hour, int minute, int second);main( )int h,m,s;long sec;printf(輸入時(shí)間:);scanf(

39、%d%d%d, &h, &m, &s);sec = seconds(h,m,s);printf(離12點(diǎn)最近的秒數(shù):%ldn, sec);long seconds(int hour, int minute, int second)long s;if( hour 6 )s = second+minute*60+hour*60*60;elses = 60-second+(60-minute-1)*60+(12-hour-1)*60*60;return s;(3)#include int fun( int n );main( )int n;scanf(%d, &n);if( fun( n ) ) /

40、是質(zhì)數(shù),則輸出該數(shù);不是的話,不作任何處理printf(%dn, n );int fun( int n )int i;for(i=2; in; i+)if( n%i = 0 )break;if( in )return 0;elsereturn 1;(4)#include int fun( int n );main( )int n;int count=0;for(n=2;n1000;n+)if( fun( n ) ) printf(%4d, n );count+;if( count % 10 = 0 )printf(n);printf(n);int fun( int n )int i;for(i

41、=2; in; i+)if( n%i = 0 )break;if( in )return 0;elsereturn 1;(5)#include int func( int n );main( )int n;scanf(%d, &n);printf(%dn, func(n) );int func( int n )if ( 1 = n )return 3;return 2*func(n-1)-1;(6)#include int gcd(int m, int n);main( )int x,y,t;scanf(%d%d, &x, &y);if( x y )t=x; x=y; y=t;printf(%

42、dn, gcd(x,y) );int gcd(int m, int n)if (0=n)return m;return gcd(n, m%n);第9章1.(1)xyzNKT(2)bcdefgh(3)4,4(4)qponmzyx(5)abcCD(6)02(1)#include #include void reverse( int *p, int n);main( )int i;int a10=1,2,3,4,5,6,7,8,9,10; reverse(a,10);for(i=0; i10; i+)printf(%d , ai);printf(n);void reverse( int *p, in

43、t n)int *q;int t;q = p + n - 1;while( p q )t = *p; *p = *q;*q = t;p+;q-;(2)#include #include void reverseStr( char *str );main( )char s100;gets(s);reverseStr(s);puts(s);void reverseStr( char *str )char *pEnd,t;pEnd = str + strlen(str) - 1;while( str pEnd )t = *str;*str = *pEnd;*pEnd = t;str+;pEnd-;(

44、3)#include int copyTo(int *s1, int n, int *s2);main( )int a10=1,2,3,4,5,6,7,8,9, 10;int b10, count,i;count=copyTo(a,10,b);for(i=0; icount; i+)printf(%d , bi );printf(n);int copyTo(int *s1, int n, int *s2)int count=0;int *ps1, *ps2;ps2 = s2;for(ps1 = s1; ps1 s1 + n; ps1+)if( *ps1 % 2 )/奇數(shù)*ps2+ = *ps1

45、;return ps2 - s2;(4)#include void copyToStr(char *str1, char *str2);main( )char s1100, s2100;gets( s1 );copyToStr(s1, s2);puts( s2 );void copyToStr(char *str1, char *str2)while( *str1 )if( *str1 = a & *str1 = z )*str2+=*str1;str1+;*str2 = 0;(5)#include void deleteAll(char *str, char ch);main( )char

46、s100, c;gets(s);c = getchar( );deleteAll(s, c);puts(s);void deleteAll(char *str, char ch)char *p;p = str;while( *str )if( *str != ch )*p+ = *str;str+;*p = 0;(6)#include void replaceAll( char *str, char ch1, char ch2);main( )char s100, c1, c2;printf(輸入字符串:);gets(s);printf(輸入查找字符:);c1 = getchar( );ffl

47、ush(stdin); /清除鍵盤(pán)緩沖區(qū)printf(輸入替換字符:);c2 = getchar( );replaceAll(s,c1, c2);puts(s);void replaceAll( char *str, char ch1, char ch2)while( *str )if( *str = ch1 )*str = ch2;str+;(7)#include int transformToBin( int dnum, int *bin ) ;int main( )int array32; /保存轉(zhuǎn)換后的進(jìn)制數(shù)int num; /待轉(zhuǎn)換的整數(shù)int cc;/最后得到的進(jìn)制總共多少位printf(請(qǐng)輸入一個(gè)整數(shù):);scanf(%d, &num);cc=transformToBin( num, array ); /調(diào)用轉(zhuǎn)換函數(shù)cc-; /使cc指向最后一個(gè)元素for( ; cc=0;cc- ) /輸

展開(kāi)閱讀全文
溫馨提示:
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. 裝配圖網(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ì)自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔
關(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),我們立即給予刪除!