


版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、C+程序设计实验(上)试卷库题型 1 基本型 ( 顺序、选择 )1、输入一个华氏温度的值F,要求输出其摄氏温度值C,公式为C = |(F-32)【解答】#include<iostream>using namespace std;int main() float C, F cin>>F;C=5. 0/9. 0*(F-32. 0); cout<< , C=z/<<C<<endl; return 0;2、输入三个整数a,b,c求其中的最大值并输出之【解答 1】#in clude<iostream>using namespace
2、std;int main ()(int a, b, c, max cin>>a?b>>c;max =a;if(b> max ) max =b;if(c> max ) max 二 c; cout« /z max 二。max ?endl;return 0;【解答 2】#include<iostream>using namespace std;int main ()c;int a, b, c, max cin>>a?b>>if (b> a )max 二 b;elsemax 二 a;if(c> max ) m
3、ax =c;cout<< /z max 二。 max ?endl; return 0;【解答 3】#include<iostream>using namespace std;int main ()(int a, b, c, max cin>>a?b>>c;if(b>= a && b>=c)max =b;else if (c>= a )max 二 c;elsemax 二 a;,z= ,cout<< max<< max <<endl;return 0;3、从键盘输入一个字符,若是大
4、写字母,则将其转换为小写字母 其它字符则原样输出。【解答】#include<iostream>using namespace std;int main()char chcin>>ch;if(chX'A'&&ch 二 'Z') ch 二 ch+'a'-'A'cout<< ,z ch = , z<< ch <<endl; return 0;4、从键盘输入一个字符,若是小写字母,则将其转换为大写字母其它字符则原样输出。【解答】#in clude<iostr
5、eam>using n amespace std;int mai n()char chcin> >ch;if (ch ='a'&&ch ='z') ch =ch-('a'-'A'); cout<<,z ch =,z<< ch <<endl;return 0;5、输入三个整数a,b,c求其中的最小值并输出之。【解答1】#in clude<iostream>using n amespace std;int mai n()int a, b, c, minc
6、in>>a>b>> c;min =a;if(b< mi n) min =b;if(c< min) max 二 c;cout<<,z min =,<< min <<endl;return 0;)【解答2】#in clude<iostream>using n amespace std;int mai n()int a, b, c, mincin>>a> > b>> c;if (b< a )min =b;elsemin 二 a;if(c< min ) min =c
7、; cout<< , z min =, << min <<endl; return 0;)解答 3】#include<iostream>using namespace std;int main()int a, b, c, min cin>>a?b>>c;if(b 二 a && b<=c) min 二 b;else if(c<= a ) min 二 c;else min 二 a;cout<< /z min 二。 min ?endl; return 0;6、输入一个摄氏温度值C,要求输出
8、其华氏温度值F,公式为9F = -C + 325【解答】#include<iostream>using namespace std;int main() float C, F cin>>C;F=9. 0/5. 0*C+32. 0; cout<< , F=z/<<F<<endl; return 0;7、有函数x x < 1 时 y - < 2x-lICxvlO 时3x-ll x > lO0t编写程序输入X,求对应的函数值y【解答】#include<iostream> using namespace std;
9、int main()float x, y cin>>x; if(x<l)y 二 x ;else if(x<10 )y 二 2*xT;elsey 二 3*x-11;cout? y= <<y< endl;return 0;8、有函数sin x x < 0 时y = <2x + l 0 < x < 5 时x -10 x 2 5 时编写程序输入X,求对应的函数值y。【解答】#include<iostream>#include<math. h>using namespace std;int main()float
10、x, ycin>>x;if(x<0)y 二 sin(x);else if(x<5 )y =2*x+l;elsey =x10;cout y=<y endl;return 0;9、给定平面坐标系中的两个点尸 (为, 乂),。 ( 圣,乂 ),编程求两点之间的距离。公式为"。|= 3 厂” +(乂一 y"【解答】#include<iostream>#include<math. h> using namespace std;int main ()float xl, x2, yl, y2, distancecin>>
11、xl>>yl>>x2 >>y2;distance 二 sqrt(xl-x2)* (xl-x2)+(yl-y2)* (yl-y2) cout<<, z distance二 distance ?endl;return 0;10、在平面坐标系中的圆 O 是以原点为圆心、半径为 1 的圆,给定 一个点尸(为,月,试判别点P与圆0是关系(是点在圆内、圆上、 还是圆外)。【解答 1】#include<iostream>using namespace std;int main()float xl, x2=0, yl, y2=0, distancec
12、in>> xl>>yl;distance =sqrt(xlx2)* (xl-x2)+(yl-y2)* (yl-y2)if(distance >1 )z/cout<<点在圆外<<endl;else if(distance <1 )cout<< z/点在圆内<<endl;elsecout<< z/点在圆上<<endl;return 0;11、输入三个数a,b,c判断他们能否作为三角形的三条边。【解答】#in clude<iostream>using namespace std;i
13、nt mai n()int a, b, ccin>>a>bc;if(b< a+c && a<b+c &&c<a+b)cout?,z a, b, c能作为三角形的三条边?endl;else if(c<= a )cout?a, b, c不能作为三角形的三条边?endl;return 0;12、输入一个百分制成绩score将其转换为五分制成绩 A? E,转换规 贝S是:A ( 90 < SCORE < 100) ) , B ( 80 < SCORE < 90) ) ,C (70 < SCORE &
14、lt; 80) ) ,D ( 60 < SCORE < 70) ) ,E ( SCORE < 60)【解答】#in clude<iostream>using n amespace std;int mai n()(double score; char grade;cout << "score= ;cin >> score;if ( score < 0 | score > 100 ) cout 数据输入错误! << endl; else(switch ( int( score )/10 )(case10:cas
15、e9: grade ='a' ; break;case8: grade ='b' ; break;case7: grade ='c' ; break;case6: grade ='d' ; break;case5:case4:case3:case2:case1:case0: grade ='e' ; break;cout << grade << en dl;return 0;13、输入三角形的三条边,判别它们能否形成三角形,若能,则判断是等边、等腰、还是一般三角形。【解答】#include&
16、lt;iostream>using namespace std;int main ()( double a, b, c ;cout << a, b, c 二;cin >> a >> b >> c ;if ( a+b > c && b+c > a && c+a > b ) if ( a二二 b && b 二二 c )cout < 等边三角形! ? endl;else if ( a 二二 b | a 二二 c | b 二二 c )cout << 等腰三角形! ?
17、 endl;elsecout ? 一般三角形! << endl;elsecout ? 不能形成三角形!" ? endl ;return 0;14、输入一个百分制成绩score将其转换为四分等级制成绩 A? D, 换规则是:A ( 85 < SCORE < 100) ), B ( 75 < SCORE < 85) ) ,C (60 SCORE < 75) ) ,D ( SCORE < 60)【解答】#include<iostream>using namespace std;int main()( double score;ch
18、ar grade;cout ? "please input score:"cin >> score;if(score>=85)grade= , A, ;else if(score>=75)grade='B'else if(score>=60) grade= , Cr ;else grade='D'cout << "grade 二 << grade<< endl ;return 0;15、给定年份、月份,求该年的该月份有多少天?#include<iostream&
19、gt; using namespace std;bool leapYear (int year) ; /判断 year 是否闰年 int main() ( int year, month,days;cout << "please input year, month: zz; cin >> year>>month;switch(month) case 1: case 3: case 5: case 7: case 8: case 10: case 12: days=31;case 4: case 6: case 9: case 11: days=30
20、;case 2: if(leapYear(year) days=29; else days=28;cout << "days= << days<< endl ; return 0;bool leapYear(int year) if(year%4=0)&& (year%100!=0)| (year%400=0) return true;return false;16、输入某学生成绩,若成绩在 85分以上输出 "very good 若”成, 绩在60分到 85分之间输出 "good ”若,成绩低于 60分输出 &q
21、uot;no good"。【解答】#include<iostream> using namespace std;int main()( double score;cout ? "please input score:"cin >> score;if ( score 二 85 )cout ? "Very good!else if ( score =60 )cout ? Good! ; elsecout << No good!;17、输入三个整数,按从小到大的顺序输出它们的值。【解答】#include<iostrea
22、m>using namespace std;int main()( int a, b, c, t;cout << a, b, c 二 ;cin >> a >> b >> c;if(a>b) ( t=a; a=b; b=t; if(a>c) ( t=a; a=c; c=t; if (b>c) t=b;b=c; c=t; cout<< a << 't'<t' ? c << endl; return 0 ;题型 2 循环1、输入一个整数,输出该整数的所有素数因子。
23、例如,输入 120, 输出为 2、2、2、3 和 5。【解答】#include<iostream>using namespace std;int main()( int m,i = 2;cout << "please input m:;cin >> m;while( i<=m )if( m % i = 0 )( cout << i ? , ; m = m / i;else i+;return 0 ;2、使用迭代公式 1 =(必+。/"/ 2 ( = 0,1,2,? 5=。/ 2)编 程序 求某一正整数 a 的平方根。【解
24、答】#include<iostream> #include<cmath> using namespace std;int main()( const double eps = le-8;double a,x0,x;cout? "please input a:"cin ? a;xO = a / 2;x = ( xO + a/xO )/2;while( fabs( x-xO )>eps )( xO = x; x =( xO + a/xO )/2;cout ? x ? endl; return 0 ;)3、已知 X=0° , 10, 20,
25、 ° 180-,求 sinx,cosx 和 tanx 的值。【解答】#include<iostream>#include<cmath> #include<iomanip> using namespace std;int main ()( const double pi = 3.14159265;int i;double x, yl, y2, y3;cout ? setw(2) ? x << setw(15) << sin(x) << setw(15)<< cos(x) << setw(15
26、) << tg(x) ? endl;for( i=0; i<=18; i+ )( x = i*10*pi/180; yl 二 sin( x ); y2 二 cos (x); y3 = yl/y2; cout << setw( 2) << i << setw(15) ? yl << setw(15)<< y2 ? setw(15) ? y3 << endl; return 0 ;4、在 100到 200中找出同时满足用 3除余 2,用 5除余 3和用 7除余 2 的所有整数。【解答】#include<
27、iostream> using namespace std;int main()inti;for( i=100; iv=200; i+ ) if (i % 3 = 2) && (i % 5 = 3 ) && (i % 7 = 2 ) cout ? i ? endl; return 0 ;5、求 100到 999中的水仙花数。所谓水仙花数是指一个三位数,它的每位数字的立方 之和等于该数。例如,因为153=1 3+5 3+33,所以 153为水仙花数。【解答】#include<iostream>using namespace std;int mai
28、n()( int i,a,b,c;for( i=100; i<=999; i+ ) a = i/100;b = (i-a*100)/10;c = i - a*100 - b*10;if (i = a*a*a + b*b*b + c*c*c ) cout? i ? endl; return 0 ;6、求 1000 之内的所有完数。所谓完数是指一个数恰好等于它的 所有真因子之和。例如,因为 6=1+2+3,所以 6 为完数。【解答】#include<iostream>using namespace std;int main() int i,j,s;for(i=l;iv=1000;
29、 i+) s = 0;for(j=l;jvi ; j+)if(i%j = O)s = s+j;if (i = s ) cout? i ? endl; return 0 ;7、编一程序显示由符号组成的三角形图案。例如,程序运行后,屏幕显示:How many lines ?用户输入:5屏幕显示:What character ?用户输入:*则输出如下图案。解答】#include<iostream> using namespace std;int mai n ()(int i, j, k, n; char ch;cout How many lines ?n; cin»n;cout
30、«,zWhat character ?n ;cin> >ch;for ( i 二 1; i<=n; i+ )(for( k 二 1; k<=n-i; k+ )cout << ;for( j=l; j 二 2*i-1; j+ ) cout << ch ;cout << en dl;return 0 ;& 已知XYZ+YZZ=532,其中X, Y和Z为数字,X, Y和Z的值。【解答】#in clude<iostream>using n amespace std;int mai n()(int x, y, z,
31、 i ;for ( x=l; x<=9; x+ )for ( y=l; y<=9; y+ )for ( z=0; z<=9; z+ )(i = 100*x + 10*y + z + 100*y + 10*z + z;if ( i 二二 532 )cout<< /,X=, vvxvv,t' <<, y=z/vvyvv,t' <<return 0 ;9、统计输入的一行字符(直到#号为止)中字母、符各多少个。10、打印九九乘法口诀表。编一程序求出/zz= ' ?z<<endl;数字及其它字1*1=11*2=2
32、2*2=41*3=3 2*3=6 3*3=91*4=42*4=83*4=124*4=161*5=52*5=103*5=154*5=205*5=251*6=62*6=123*6=184*6=245*6=306*6=361*7=72*7=123*7=214*7=285*7=356*7=427*7=491*8=82*8=163*8=244*8=325*8=406*8=487*8=568*8=641*9=92*9=183*9=274*9=365*9=456*9=547*9=638*9=729*9=81答案:# in elude <iostream.h># in elude <ioma
33、 nip.h>void mai n()eout?e ndl;for( i=l;i<=9;i+)for(j=l;j<=i;j+)cout?j?,* ?i?J?setw(2)? i*j? " cout? endl;11、利用公式-=1-+- +求JI的近似值。直到最后一43 5 7项的绝对值不大于108为止。答案:# in elude <iostream.h># in elude <ioma nip.h># in elude <math.h>void mai n()(double sum,p n;const double eps=1.
34、0e-8;int n;sum=0.0;变量赋初值n=l;if(n%2) pn= l/double(2*n-1);else pn=- l/double(2*n-1);sum+= pn;n+; while(fabs(pn)>=eps); sum*=4;cout?"sum= n?setprecision(9)? sum?endl; 输 出结果 12、编一程序显示由符号组成的图案。例如,程序运行后屏幕显示: How many lines用户输入:13屏幕显示:What character用户输入:*则输出如下图案。*答案:#include<iostream>using na
35、mespace std;int main()int i, j, k, n;char ch;cout How many lines ?n ; cin>>n;/cin>>ch; for( i=l; i=(n+l)/2; i+ )cout What character ?nfor ( k=l; k<=n-i; k+ ) cout << ;for ( j=l: j =2*iT; j+ ) cout << ch ;cout << endl;for( i=1; i<(n+1)/2; i+ )for ( k 二 1; k 二 n/2+i
36、; k+ ) cout << ;for( j=l: j =n-2*i; j+ ) cout << ch ;cout ? endl;return 0 ;13、编一程序显示由符号组成的倒三角形图案。例如,程序运行后屏幕显示:How many lines ?用户输入:7屏幕显示:What character ?用户输入:*则输出如下图案*答案:#include<iostream>using namespace std;int main()int i, j, k, n;char ch;cout How many lines ?n ; cin>>n;cou
37、t What character ?n ; cin>>ch;for ( i=l; i<=n; i+ )for ( k=l; k<=i; k+ )cout << ; for ( j=l: j<=n-i+l: j+ ) cout << ch ; cout << endl; return 0 ;14、输入两个正整数m和n,对输入数据的合法性进行检查,求其最大公约数和最小公倍数。15、日期问题:输入一个日期 (年、月、日 ) ,判断日期的合法性,若合法,则求该日期是该年中的第几天。题型3函数模块化1、已知y= sha + shx),其中
38、sh为双曲正弦函数,即sh(t) = e - 厂。sh2x + sh3x2编一程序,输入X的值,求y的值。【解答】#in clude<iostream>#in clude<cmath>using n amespace std;double sh( double t);int mai n()(double x,y;cout? ” x= ”cin ? x;y = sh( l+sh(x)/( sh( 2*x )+sh( 3*x );cout? "y= n ? y ? en dl;double sh( double t)(return ( exp( t )-exp(
39、-t) )/2; 1 + 2 + ? + m + P+23 +?各 h32、输入m、n和p的值,求、=i5+25 +?+p5的值。注意判断运算中的溢出。【解答】using n amespace std;double f (long k, l ong num );int mai n()(long m, n, p; double s, fl, f2, f3; cout << m, n, p 二;cin»m»n> >p;fl=f( l,m ); f2=f( 3,n ); f3=f( 5, p ); if (fl && f2 &&am
40、p; f3 ) s 二 (fl + f2) /f3;cout << s= << s << endl;else cout< 溢出! n ;double f( long k, long num ) long i;double sum=0;for ( i=1; i<=num; i+ )( sum = sum + pow(i, k );if (i 二 num)return 0;/ 溢出时返回return sum;double pow( long k, long num )( long i;double sum=1;for( i=1; i二 num; i+
41、 ) sum * 二 k ;return sum;3、输入两个整数,分别用函数模块求该两个数的最大公约数和最 小公倍数,并在 main 函数中调用,完成相应功能。4、输入a,b和c的值,编写一个程序求这三个数的最大值和最小 值。要求把求最大值和最小值编写成一个函数,并使用指针或引用 作为形式参数把结果返回 main 函数。【解答】(1)使用指针参数#include<iostream> using namespace std;void fmaxmin( double,double ,double ,double *,double * ); int main()( double a,b
42、,c,max,min;cout? "a,b,c =cin ? a ? b ? c;fmaxm in( a,b,c,&max,&min);cout ? *'max=" ? max ? endl;cout ? "min=" ? min ? endl;void fmaxm in( double x,double y,double z,double *pl,double *p2 ) (double u,v;if ( x>y ) u = x; v = y; else u = y; v = x; ;if ( z>u ) u = z
43、;if ( z<v ) v = z;*pl = u;*p2 = v;#in clude<iostream>(2)®用引用参数using n amespace std;void fmaxm in( double, double ,double , doublefe , doublefe );int mai n()(double a, b, c, max, min;cout ? a, b, c 二;cin >> a >> b >> c;fmaxm in( a, b, c, max, min );cout ? "max 二 ?
44、 max << endl;cout ? min 二 ? min << endl;void fmaxm in( double x, double y, double z, double &pl, double &p2 ) ( double u, v;if(x>y ) u= x;v= y; else (u = y;v=x; ;if(z>u )u = z;if(z<v )v = z;pl二 u;p2二 v;5、用线性同余法生成随机数序列的公式为rk = ( multiplier * r k.i + increment) % modulus序列
45、中的每一个数 rk,可以由它的前一个数rk 一 I计算岀来。例如,如果有:R = ( 25173 * rk.i + 13849 ) % 65536位或两则可以产生 65536 个各不相同的整型随机数。设计一个函数作随机数生成器,生成一 位数的随机数。利用这个随机数生成器,编写一个小学生四则运算的练习程序: ?可以进行难度选择。一级难度只用一位数,二级难度用两位数; ?可以选择运算类型,包括加、减、乘、除等; ?给岀错误提示; ?可以统计成绩。【解答】#include<iostream>using namespace std;int Rand(int, int) ;/ 生成指定范围的
46、随机数int main()( int w, i, r, t = 0;char op, answer;int a, b, d;while(l) 练习开始 cout " 现在开始? ( Y 或n”;cin>>answer;if (answer 二二 'N' |answer 二二 'n') break;while (1)( cout ? 请输入难度 (1 或 2 ): ;cin >> w;if ( w != 1 && w ! 二 2 )cout ? 输入难度错误,重新输入! " ? endl;else bre
47、ak ;while(1)( cout ? 请输入运算类型 (+,-,*,/): ;cin >> op;if ( op !='+' && op !='&& op !='*' && op !='/')cout < 输入运算符错误,重新输入! ? endl; else break;)岀 10 道题,每题 10 分t=0;for( i=1; i<=10; i+ )( while(1) if( w 二二 1 )(a = Ran d(O, 10) ; b二 Rand (0, 10
48、);elseif( w = 2 )(a = Ra nd(10, 100); b二 Ran d(10, 100);if (op二二-')if ( a<b ) continue ;/使被减数大于减数if ( op二二' /')if ( int( a/b ) != (a / b) ) con ti nue;/只做结果为整数的除法break;cout << a << op << b < '二'; cin >> d;switch ( op )(case ': r = a + b; break;ca
49、se ' : r = a - b; break;case ': r 二 a * b; break;case ': r = a / b; break;if ( r = d )(cout <<你算对了,加 10 分! ? endl;t = t + 10;)else cout ?你算错了! << endl;cout <<你的成绩是:? t <<分 << endl;)int Ran d(i nt m, int n)(static int r;/静态变量保留上一个随机数do(r = ( 25173*r + 13849 )
50、 % 65536 ; while (r<m|r>=n);return r;6、已知勒让德多项式为P (x) =(2" (x) - l)p _2 (x) / nn>l编一程序,从键盘上输入X和n的值,使用递归函数求 p(X)的值。【解答】#include<iostream>using namespace std;double p ( double x, int n );int main()( int n;double x;cout << "please input x and n:; cin >> x >> n
51、;cout < p( << x <<, " ? n << ) 二” << p( x, n ) <<endl;double p( double x, int n )( double tl,t2;if( n = 0 ) return 1;else if( n 二二 1 ) return x;else( tl = ( 2*n-1 )*p( x, n-1 ); t2 = ( nl )*p( x, n-2 ); return ( tlt2 )/n;)7、把以下程序中的 print 。函数改写为等价的递归函数。"n el
52、ude <iostream> using n amespace std;void print( int w )( for( int i = 1 ; i v= w ; i + ) for( intj = 1 ;j v=i ;j + )cout? i ?” "cout? endl;int main()( print( 5 ) ;运行显示:4 4445 5555【解答】#in clude<iostream>using n amespace std;void prin t(i nt w)in ti;if( w)(print( w-1 );for( i=l; iv=w;
53、 i+ )cout? wcout? en dl;void main() print( 5 );&已知用梯形法求积分的公式为:"一 2 +悟f(E气其中h = (ba)/n, n为积分区间的等分数,编程序求如下积分的值。要求把求积分公式编写成一个函数,并使用函数指针作为形式 参 数。调用该函数时,给定不同的被积函数作为实际参数求不 同的积分。【解答】#in clude<iostream>#in clude<cmath> using n amespace std;double fl( double x ) return 4/(1+ x*x );double
54、 f2( double x )( return sqrt ( 1 + x*x );double f3( double x ) return sin( x );double trap( double( *fun )( double x ), double a, double b, long n )( double t,h; int i;t 二(*fun )(a) + ( *fun )( b ) ) / 2. 0;h=(b-a)/n;for( i=l; i<-nl; i+ ) t += ( *fun )(a+i*h); t *二 h;return t;int main ()( double
55、tl,t2, t3;tl = trap( fl, 0, 1, 10000 );cout <<tl 二 ? tl << endl;t2 二 trap ( f2, 1, 2, 10000 );cout <<t2=”? t2 << endl;t3 = trap( sin, 0, 3. 14159265/2, 10000 );cout <<t3 二 << t3 << endl;9、编写一个程序,包含三个重载的 display 函数和一个主函数。要求第一个函数输出double值,前面用字符串"a double:
56、"引导, 第二个函数输出一个 int 值,前面用字符串 "a int: ”引导,第三 个函数输出一个char字符值,前面用字符串"achar:引导,在 主函数中分别用doubleint和char型变量作为实参调用display 函数。解答】#include<iostream>using namespace std;void display( double d )( cout << a double: << d << endl;void display( int i )(cout << a int: <
57、;< i ? endl;void display( char c ) cout ? char:<< c << en dl;int mai n ()(double d = 1. 5; int i = 100; char c = display( d );display( i );display( c );10、使用重载函数编程序分别把两个数和三个数从大到小排列【解答】#in clude<iostream>using n amespace std;void sort ( double x, double y );void sort ( double x,
58、double y, double z );int mai n()(sort ( 5. 6, 79 );sort ( 0. 5, 30. 8, 5. 9 );void sort (double x, double y)(if ( x>y ) cout << x << ' t' << y << en dl;t' << x ? en dl;void sort ( double x, double y,double z )(double t;if(y<z ) t = y; y 二 乙z = t; if(x&
59、lt;z ) t = x; x 二 z;z = t; if(x<y ) t = x; x 二 y ;y=t; cout <<x<< 't'<< y <<'t'<< z << ' t' << en dl;ml11、给定求组合数公式为:"'一泌顽,编一程序,输入 m和n的值,求勇白勺值。注意优化算法,降低溢岀可能。要求主函数调用以下函数求组合数:int Fabricate( int m, int n ); 返回驾的值Fabricate函数内又须调用Multi函数:int Multi( int m, int n );main、程序由4个文件组成。头文件存放函数原型作为调用接口;其他3个cpp文件分别是Fabricate 和 Multi 函数的定义。【解答】/Fabricate.h#ifndef FABRICATE.H#define FABRICATE.Hint Fabricate( int m,int n );int Multi( int m, int n );#endi
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
评论
0/150
提交评论