2015年电大C++语言程序设计课程期末针对性训练试题及答案参考小抄(电大考试必备)_第1页
2015年电大C++语言程序设计课程期末针对性训练试题及答案参考小抄(电大考试必备)_第2页
2015年电大C++语言程序设计课程期末针对性训练试题及答案参考小抄(电大考试必备)_第3页
2015年电大C++语言程序设计课程期末针对性训练试题及答案参考小抄(电大考试必备)_第4页
2015年电大C++语言程序设计课程期末针对性训练试题及答案参考小抄(电大考试必备)_第5页
已阅读5页,还剩13页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1 电大 C+语言程序设计课程 期末针对性训练 训练第一套 一、单选题(每小题 2分,共 20 分) 1在每个 C+程序中都必须包含有这样一个函数,该函数的函数名为( A )。 A. main B. MAIN C. name D. function 2设 x和 y均为 bool量,则 x & y为真的条件是( D )。 A. 其中一个为假 B. 其中一个为真 C. 它们均为假 D. 它们均为真 3. 逻辑表达式 x0 | y=5的相反表达式为( B )。 A. x=0 | y!=5 B. x0 | y!=5 D. x0 & y=5 4. 假定 p是一个指向 float型数据的指针,则 p+1所指数据的地址比 p所指数据的地址大( C )个字节。 A. 1 B. 2 C. 4 D. 8 5. 枚举类型 中的每个枚举常量的值都是一个( A )。 A. 整数 B. 浮点数 C. 字符 D. 逻辑值 6. 循环体至少被执行一次的语句为( C )语句。 A. for循环 B. while 循环 C. do循环 D. 任一种循环 7. 在下面的字符数组定义中,( D )语句有语法错误。 A. char a20=”abcdefg”; B. char a=”x +y=55.”; C. char a15=1,2; D. char a10=5; 8. 若用数组名作为函数调用的实参,传递给形参的是( A )。 A. 数组的首地址 B. 数组中第一个元素的值 C. 数组全部元素的值 D. 数组元素的个数 9假定 AB为一个类,则执行“ AB a(4), b5, *p2;”语句时,自动调用该类构造函数的次数为( A )。 A. 6 B. 7 C. 9 D. 11 10当使用 fstream流类定义一个流对象并打开一个磁盘文件时,文件的隐含打开方式为( D )。 A. ios:in B. ios:out C. ios:in | ios:out D. 没有 二、填空题(每小题 2分,共 20 分) 1. 若需要定义一个标识符常量,并且使 C+能够进行类型检查,则应在定义语句的开始使用保留字 _ const _。 2. 算术表达式 1432 baxy对应的 C+表达式为 _(x*y*y)/(3*a)+4*b-1 _。 3. 逻辑表达式 xy & x!=10的相反表达式为 _ x=y | x=10_。 4. 每个字符指针变量占用内存 _4_个字节。 2 5. 执行“ typedef int DataType;”语句后,在使用 int定义整型变量的地方都可以使用 标识符 _ DataType _来定义整型变量。 6. 对于在所有函数 定 义 之外定义的变量,若没有被初始化则系统隐含对它赋予的初值为 _0_。 7假定 p 所指对象的值为 25, p+1 所指对象的值为 46,则执行“ *(p+);”语句后, p所指对象的值为 _46_。 8假定一个结构类型的定义为“ struct Aint a; double* b; A* c;”,则该类型的大小为 _12_字节。 9假定一维数组的定义为“ int a8;”,则该数组所含元素的个数为 _8_。 10. 若 while 循环语 句的开始为 ”while(i+=10)” ,若 i 的初值为 0,同时在循环体中不会修改 i 的值,则其循环体将被重复执行 _11_次后正常结束。 三、写出下列每个程序运行后的输出结果(每小题 6分,共 30分) 1. #include void main() int s1=0, s2=1; for(int i=1; i=6; i+) s1+=i; s2*=i; couts1,s2endl; 输出结果: 21,720 2. #include void main() int a10=68,79,86,65,46,94,37,78,60,53; int c=0; for(int i=0;i=60) c+; cout”c=”cendl; 输出结果: c=7 3. #include void main() int a34=1,2,7,8,5,6,11,15,9,20,3,4; int m=a00; for(int i=0;i3;i+) for(int j=0;jm) m=aij; coutmendl; 输出结果: 20 3 4. #include void main() int a=10, b=15; couta b ; a*=3; int b=a+20; couta b ; couta bendl; 输出结果: 10 15 30 50 30 15 5. #include void main() int a8=6,19,4,12,20,5,18,25; int* p=a; for(p=a; pa+8;p+) if(*p10) cout*p ; coutendl; 输出结果: 6 4 5 四、写出下列每个函数的功能(每小题 8分,共 24分) 1. bool WB(int a, int n, int x) for(int i=0;in;i+) if(ai=x) return true; return false; 函数功能: 从数组 a中顺序查找值为 x的元素,若查找成功则返回真,否则返回假。 2. int LJ(int a, int n) int k=0; for(int i=1;iak) k=i; return ak; 函数功能: 求出数组 a中 n个元素的最大值并返回。 3. 假定结构类型 Dnode中的 data 域为结点值域, next域为结点指针 域。 DNode* QB(int n) 4 if(n=0) return NULL; DNode* f=new DNode; cinf-data; DNode* p=f; while(-n) p=p-next=new DNode; cinp-data; p-next=NULL; return f; 函数功能: 建立一个具有 n个结点的链表,每个结点的值依次由键盘输入,该函数返回其表头指针。 五、按题目要求编写程序( 6分) 已知 6 a 30、 15 b 36,求出满足不定方程 2a+5b=126的全部整数组解。如 (13,20)就是其中的一组解,并按此格式输出每 组 解。 答: #include void main() int a,b; for(a=6;a=30; a+) for(b=15;b=36;b+) if(2*a+5*b=126) cout(a,b)endl; 5 训练第二套 一、单选题(每小题 2分,共 20 分) 1. 枚 举类型中的每个枚举常量的值都是一个( A )值。 A. 整数 B. 浮点数 C. 字符 D. 逻辑 2设 x和 y均为 bool量,则逻辑表达式 x | y为假的条件是( C )。 A. 它们均为真 B. 其中一个为真 C. 它们均为假 D. 其中一个为假 3. 声明或定义一个内联函数时,必须在函数开始使用保留字( D )。 A. static B. const C. extern D. inline 4. 在下面的函数声明中,存在着语法错误的是( D )。 A. BC(int a, int); B. BC(int, int); C. BC(int, int=5); D. BC(int x; int y); 5. 假定 a为一个整型数组名,则元素 a4与( C )的表示等价。 A. a+4 B. *a+4 C. *(a+4) D. *(a+16) 6. 下面循环语句执行结束后输出的 i值为( B )的值。 for(int i=0; in/2) coutiendl; break; A. n/2 B. n/2+1 C. n-1 D. n 7. 将两个字符串连接起来组成一个字符串时,选用( C )函数。 A. strlen() B. strcpy() C. strcat() D. strcmp() 8. 预处理命令在程序中都是以 ( B )字符开头的。 A. * B. # C. & D. 9. 假定有定义“ struct BOOKchar title40; float price;”,则不正确的变量定义语句为( D )。 A. BOOK x; ; B. BOOK x=C+ Programming,27.0; C. BOOK *x=new BOOK; D. BOOK x=new BOOK; 10. 假定 AB 为一个类, px 为指向该类动态对象数组的指针,该数组长度为 n,则执行“ delete px;”语句时,自动调用该类析构函数的次数为( B )。 A. 1 B. n C. n-1 D. n+1 二、填空题(每小题 2分,共 20 分) 1已知 AZ的 ASCII 码为 6590,当执行“ char ch=14*4+12;coutch;”语句序列后,得到的输出结果为 _D_。 2 double类型的长度为 _8_。 3. 表达式 x=x+1表示成增量表达式为 _+x _。 4. 逻辑表达式 ab & b!=15_。 6 5. 假定一个二维数组的定义为“ char* a54;”,则该数组所含元素的个数为 _20_,所占存储空间的字节数为 _80_。 6当函数中的 _局部 _变量没有被赋初值时,它的值是不确定的。 7假定一个结构类型的定义为“ struct Adouble a,b; A* c;”,则该类型的大小为 _20_字节。 8. 假定要访问一个结构指针 p 所指对象中的数据成员 data,则表示方法为 _ p-data _。 9假定用户没有给一个名为 AB的类定义构造函数,则系统为其隐含定义的构造函数为 AB()_。 10. 当在程序中执行到 break 语句时,就立即结束本层循环类语句或 switch语句的执行。 三、写出下列每个程序运行后的输出结果(每小题 6分,共 30分) 1. #include void main() int s=0; for(int i=1;i=8;i=+2) s+=i*i; couts=sendl; 输出结果: s=84 2. #include void main() int i=1,s=0; while(s20) if(i%2!=0) s+=i; i+; couti,sendl; 输出结果: 10,25 3. #include void main() int a8=36,25,48,14,55,20,47,82; int b1, b2; b1=b2=a0; for(int i=1; i8; i+) if(aib2) b2=ai; coutb1,b2endl; 7 输出结果: 14,82 4. #include int LB(int *a, int n) int s=1; for(int i=0;in;i+) s*=*a; a+; return s; void main() int a5=1,2,3,4,5; coutLB(a,5)endl; 输出结果: 120 5. #include struct Worker char name15; /姓名 int age; /年龄 float pay; /工资 ; void main() Worker x=wangfong,46,1640; Worker y, *p; y=x; p=&x; y.age y.payendl; coutname age+5 pay-300endl; 输出结果: wangfong 46 1640 wangfong 51 1340 四、写出下列每个函数的 功能(每小题 8分,共 24分) 1. int WC(int a, int n, int k) int c=0; for(int i=0;i=k) c+; return c; 函数功能: 统计出数组 a的 n个元素中大于等于参数 k的值的元素个数并返回。 2. bool SG(int x) /x为大于等于 2的整数 int a=int(sqrt(x); /sqrt(x)为求 x的平方根 int i=2; 8 while(ia) return true; else return false; 函数功能: 判断 x是否为一个素数(或质数),若是则返回真,否则返回 假。 3. 假定结构类型 Worker中的 name域表示姓名, age域表示年龄, pay域表示工资。 void QA(Worker a, int n) for(int i=0; ai.ageai.pay; 函数功能: 从键盘上输入 n个 Worker结构类型的记录依次保存到一维数组 a的对应元素中。 五、按题目要求编写函数( 6分) 假定函数声明为“ void Print(int a, int n);”,在函数体中按下标从大到小的次序输出数组 a 中的 n 个元素的值,并要求每行输出 6个元素,当然最后一行可以不足 6 个。 答: void Print(int a, int n) int i,j=0; for(i=n-1; i=0; i-) coutai ; if(+j%6=0) coutendl; coutendl; 9 训练第三套 一、单选题(每小题 2分,共 20 分) 1. 由 C+源程序文件编译而成的目标文件的缺省扩展名为( A )。 A. obj B. lik C. exe D. cpp 2. 程序运行中需要从键盘上输入多 于一个数据时,各数据之间应使用 ( D )符号作为分隔符。 A. 空格或逗号 B. 逗号或回车 C. 逗号或分号 D. 空格或回车 3. 设 x是一个 bool型的逻辑量, y的值为 10,则表达式 x & y的值为( C )。 A. 1 B. 0 C. 与 x值相同 D. 与 x值相反 4. for 语句能够被改写为( D )语句。 A. 复合 B. if C. switch D. while 5. 在下面的 do循环语句中,其循环体被执行的次数为( A )。 int i=0; do i+; while(i*i10); A. 4 B. 3 C. 5 D. 2 6. 在下面的一维数组定义中,( C )语句有语法错误。 A. int a=1,2,3; B. int a10=0; C. int a; D. int a5; 7. 下面的( C )保留字不能作为函数的返回类型。 A. void B. int C. new D. long 8. 下面的函数声明中, ( B )是“ void BC(int a, int b);”的重载函数。 A. int BC(int x, int y); B. void BC(int a, char b); C. float BC(int a, int b, int c=0); D. int BC(int a, int b=0); 9. 当类中一个字符指针成员指向具有 n个字节的存储空间时,它所能存储字符串的最大长度为( C )。 A. n B. n+1 C. n-1 D. n-2 10. 假定 AB 为一个类,则该类的拷贝构造函数的声明语句为( D )。 A. AB&(AB x); B. AB(AB x); C. AB(AB* x); D. AB(AB&); 二、填空题(每小题 2分,共 20 分) 1执行“ cout5的相反表达式为 _ x+y=5_。 5. 假定一个二维数组的定义为“ int a36;” ,则该数组含有 _18_个元素。 6. 执行“ typedef int ABC20;”语句把 ABC定义为具有 20个整型元素的 _数组类型 _。 10 7假定 p所指对象的值为 36, p+1所指对象的值为 49,则 *+p的值为 _49_。 8. 假定 a是一个一维数组,则 ai的指针访问方式为 _*(a+i)_。 9对一个类中的数据成员的初始化可以通过构造函数中的初始化表实现,也可以通过构造函数中的 _函数体_实现。 10当一个 类对象离开它的作用域时,系统将自动调用该类的 _析构函数 _。 三、写出下列每个程序运行后的输出结果(每小题 6分,共 30分) 1. #include #include int SD(int a, int b, char op) switch(op) case +: return a+b; case -: return a-b; default: cout操作符 op出错,退出运行 !;exit(1); void main() int x=20, y=6; coutSD(x,y,+) SD(x,y,-)endl; 运行结果: 26 14 2. #include #include void main() char* a5=student,worker,cadre,soldier,apen; char *p1; p1=a0; for(int i=1;i0) p1=ai; coutp1endl; 运行结果: worker 3. #include int WF(int x, int y) x=x+y; y=x+y; return x+y; 11 void main() coutWF(8,5)endl; 运行结果: 31 4. #include const int n=9; void main() int an=2,4,6,8,10,12,14,16,18; int s=0; for(int i=0; in; i+) if(i%3=0) s+=ai; cout”s=”sendl; 运行结果: 24 5. #include void main() int* d=new int5; int i; for(i=0;i5;i+) di=2*i+1; coutdi ; coutx; y+=x*x; while(-n0); return y; 函数功能: 求出从键盘上输入的 n个整数的平方和并返回。 12 2. bool WE(int a, int b, int n) for(int i=0;in;i+) if(ai!=bi) break; if(i=n) return true; return false; 函数功能: 判断具有 n个元素的两个数组 a和 b中对应元素值是否全部相等,若是则返回真,否则返回假。 3. void LK(int a, int n, int& m) float s=0; int i; for(i=0;in;i+) s+=ai; s/=n; m=0; for(i=0;i=s) m+; 函数功能: 统计出数组 a的前 n个元素中大于等于其平均值的元素个数并由引用参数 m带回。 五、按题目要求编写函数( 6分) 假定一个函数声明为“ void AD(int a, int n);”,要求把数组 a中的 n个元素值按相反的次序仍保存在数组 a中。 答: void AD(int a, int n) for(i=0; in/2; i+) int x=ai; ai=an-1-i; an-1-i=x; 13 训练第四套 一、单选题(每小题 2分,共 20 分) 1. C+程序的基本功能模块为( D )。 A. 表达式 B. 标识符 C. 语句 D. 函数 2. 存储以下数据,占用存储字节最多的是( A )。 A. 0 B. 0 C. ”0” D. n 3. 在下面的一维数组定义中,有语法错误的是( C )。 A. int a=1,2,3; B. int a10=0; C. int a; D. int a5; 4. 在下面的 语句或语句组中,( B )不正确。 A. int a5; B. int M=10; int aM; C. int a=1,5,10,45; D. const int N=12; int aN; 5 C+语言中的每条简单语句以 _B_作为结束符。 A. 逗号 B. 分号 C. 空格 D. 换行符 6. 含随机函数的表达式 rand()%20 的值在 ( C )区间内。 A. 119 B. 120 C. 019 D. 020 7. 当处理一个特定的问题时,若循环次数已知,则通常采用( A )来解决。 A. for循环 B. while 循环 C. do循环 D. switch语句 8. 在下面循环语句中内层循环体 S语句的执行总次数为( D )。 for(int i=0; in; i+) for(int j=i; jy的逻辑值为 _假( false 或 0) _。 6假定一个一维数组的定义为“ char* a8;”,则该数组所占用存储空间的字节数为 _32_。 14 7. 假定 x=10,则表达式 2+x+的值为 _12_。 8假定 p所指对象的值为 25, p+1所指对象的值为 46,则 *p+的值为 _25_。 9. 假定要动态分配一个类型为 Worker 的具有 n 个元素的数组,并由 r 指向这个动态数组,则使用的 语句为Worker* r=_ new Workern;_。 10. 设 px指向一个类的动态分配的对象,则执行“ delete px;”语句时,将自动调用该类的 _析构函数 _。 三、写出下列每个程序运行后的输出结果(每小题 6分,共 30分) 1. #include void SB(char ch) switch(ch) case A: case a: coutwell! ; break; case B: case b: coutgood! ; break; case C: case c: coutpass! ; break; default: coutbad!;break; void main() SB(A); SB(c); SB(b); coutendl; 运行结果: well! pass! good! 2. #include void main() int a6=36,25,48,14,55,40; int b1=a0; for(int i=1;ib1) b1=ai; cout”b1=”b1endl; 运行结果: 55 3. #include void main() int a9=3,5,7,9,11,13,15,17,25; int *p=a; for(int i=0;i9;i+) if(i+1)%3=0) cout*(p+i) ; coutendl; 15 运行结果: 7 13 25 4. #include int* LG(int m) int* a=new intm; for(int i=0;im;i+) ai=3*i+1; return a; void main() int* b=LG(5); for(int i=0;i5;i+) coutbi ; coutendl; deleteb; 运行结果: 1 4 7 10 13 5. #include #include struct Worker char name15; /姓名 int age; /年龄 float pay; /工资 ; void main() Worker x; strcpy(, WeiRong); x.age=45; x.pay=1235; x.age x.payb) a=b; if(ac) a=c; return a; 函数功能: 求出 a,b,c三个数中的最小值并返回。 2. double WA(int a, int n) 16 double s=0; for(int i=0;in;i+) s+=ai; return s/n; 函数功能: 求出数组 a中 n个元素的平均值并返回。 3. double SF(double x, int n) /n为大于等于 0的整数 double p=1,s=1; for(int i=1;i=n;i+) p*=x; s+=p/(i+1); return s; 函数功能: 计算出表达式1.3221 nnxxx 的值并返回。 五、按题目要求编写函数( 6分) 假定一个函数声明为“ int FF(int a, int n);”,要求递归求出数组 a中所有 n个元素之积并返回。 答: int FF(int a, int n) if(n=1) return an-1; else return an-1*FF(a,n-1); /或者 if(n=0) return 1; / else return an-1*FF(a,n-1); 17 请您删除一下内容, O( _ )O 谢谢! 2015 年中央电大期末复习考试小抄大全,电大期末考试必备小抄,电大考试必过小抄 After earning his spurs in the kitchens of The Westin, The Sheraton, Sens on the Bund, and a sprinkling of other top-notch venues, Simpson Lu fi nally got the chance to become his own boss in November 2010. Sort of. The Shanghai-born chef might not actually own California Pizza Kitchen (CPK) but he is in sole charge of both kitchen and frontof- house at this Sinan Mansionsstalwart. Its certainly a responsibility to be the head chef, and then to have to manage the rest of the restaurant as well, the 31-year-old tells Enjoy Shanghai. In hotels, for example, these jobs are strictly demarcated, so its a great opportunity to learn how a business operates across the board. It was a task that management back in sunny California evidently felt he was ready for, and a vote of confi dence from a company that, to date, has opened 250 outlets in 11 countries. And for added pressure, the Shanghai branch was also CPKs China debut. For sure it was a big step, and unlike all their other Asia operations that are franchises, they decided to manage it directly to begin with, says Simpson. Two years ago a private franchisee took over the lease, but the links to CPK headquarters are still strong, with a mainland-based brand ambassador on hand to ensure the business adheres to its ethos of creating innovative, hearth-baked pizzas, a slice of PR blurb that Simpson insists lives up to the hype. They are very innovative, he says. The problem with most fast food places is that they use the same sauce on every pizza and just change the toppings. Every one of our 16 pizza sauces is a unique recipe that has been formulated to complement the toppings perfectly. The largely local customer base evidently agrees and on Saturday and Sunday, at least, the place is teeming. The kids-eat-for-free policy at weekends is undoubtedly a big draw, as well as is the spacious second-fl oor layout overlooked by a canopy of green from Fuxing Park over the road. The company is also focusing on increasing brand recognition and in recent years has taken part in outside events such as the regular California Week. Still, the sta are honest enough to admit that business could be better; as good, in fact, as in CPKs second outlet in the popular Kerry Parkside shopping mall in Pudong. Sinan Mansions has really struggled to get the number of visitors that were envisaged when it first opened, and it hasnt been easy for any of the tenants here, adds Simpson. Were planning a third outlet in the city in 2015, and we will probably choose a shopping mall again because of the better foot traffic. The tearooms once frequented by Coco Chanel and Marcel Proust are upping sticks and coming to Shanghai, Xu Junqian visits the Parisian outpost with sweet treats. One thing the century-old Parisian tearoom Angelina has shown is that legendary fashion designer Coco Chanel not only had style and glamor but also boasted great taste in food, pastries in particular. One of the most popular tearooms in Paris, Angelina is famous for having once been frequented by celebrities such as Chanel and writer Marcel Proust. Now Angelina has packed up its French ambience, efficient service, and beautiful, comforting desserts and flown them to Shanghai. At the flagship dine-in and take-out space in Shanghai, everything mimics the original tearoom designed from the beginning of the 20th century, in Paris, the height of Belle Epoque. The paintings on the wall, for example, are exactly the same as the one that depicts the landscape of southern France, the hometown of the owner; and the small tables are intentional imitations of the ones that Coco Chanel once sat at every afternoon for hot chocolate. The famous hot chocolate, known as LAfricain, is a luxurious mixture of four types of cocoa beans imported from Africa, blended in Paris and then shipped to Shanghai. Its sinfully sweet, rich and thick as if putting a bar of melting chocolate directly on the tongue and the fresh whipped cream on the side makes a light, but equally gratifying contrast. It is also sold in glass bottles as takeaway. The signature Mont-Blanc chestnut cake consists of three parts: the pureed chestnut on top, the vanilla cream like stuffing, and the meringue as base. Get all three layers in one scoop, not only for the different textures but also various flavors of sweetness. The dessert has maintained its popularity for a century, even in a country like France, perhaps the worlds most competitive place for desserts. A much overlooked pairing, is the Paris-New York choux pastry and N226 chocolate flavored tea. The choux pastry is a mouthful of airy pecan-flavored whipped cream, while the tea, a blend of black teas from China and Ceylon, cocoa and rose petals, offers a more subtle fragrance of flowers and chocolate. Ordering these two items, featuring a muted sweetness, makes it easier for you to fit into your little black dress. Breakfast, brunch, lunch and light supper are also served at the tearoom, a hub of many cultures and takes in a mix of different styles of French cuisines, according to the management team. The semi-cooked foie gras terrine, is seductive and deceptive. Its generously served at the size and shape of a toast, while the actual brioche toast is baked into a curved slice dipped with fig chutney. The flavor, however, is honest: strong, smooth and sublime. And you dont actually need the toast for crunchiness. This is the season for high teas, with dainty cups of fine china and little pastries that appeal to both visual and physical appetites. But there is one high tea with a difference, and Pauline D. Loh finds out just exactly why it is special. Earl Grey tea and macarons are all very well for the crucial recuperative break in-between intensive bouts of holiday season shopping. And for those who prefer savory to sweet, there is still the selection of classic Chinese snacks called dim sum to satisfy and satiate. High tea is a meal to eat with eye and mouth, an in-between indulgence that should be light enough not to spoil dinner, but sufficiently robust to take the edge off the hunger that strikes hours after lunch. The afternoon tea special at Shang-Xi at the Four Seasons Hotel Pudong has just the right elements. It is a pampering meal, with touches of luxury that make the high tea session a treat in itself. Whole baby abalones are braised and then topped on a shortcrust pastry shell, a sort of Chinese version of the Western vol-au-vent, but classier. Even classier is the dim sum staple shrimp dumpling or hargow, upgraded with the addition of slivers of midnight dark truffles. This is a master touch, and chef Simon Choi, who presides unchallenged at Shang-Xi, has scored a winner again. Sweet prawns and

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论