南昌航空大学C语言期末考试试卷_第1页
南昌航空大学C语言期末考试试卷_第2页
南昌航空大学C语言期末考试试卷_第3页
南昌航空大学C语言期末考试试卷_第4页
南昌航空大学C语言期末考试试卷_第5页
已阅读5页,还剩15页未读 继续免费阅读

下载本文档

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

文档简介

1、评阅人 得分一、 单项选择题(每题3分,共30分,注意:答案写在后面的答题卡内,否则0分)1、若有定义:int a=8, b=5, c; 执行语句c = a/b+0.4 ;后,c的值为( )。 a) 1.4 b) 1 c) 2.0 d) 22 、以下程序中,while 循环的次数是( )。 #include <stdio.h> void main(void) int i = 0;while (i<10) if (i<1) continue;if (i= =5) break; i+; a) 1 b) 死循环,不能确定次数 c) 6 d) 103、以下程

2、序的输出结果是( )。 #include <stdio.h> void main(void) int a = 0, i;for (i=1; i<5; i+) switch (i) case 0: case 3: a += 2; case 1: case 2: a += 3; default: a += 5; printf(“%dn”, a); a) 31 b) 13 c) 10 d) 204、以下程序的输出结果是( )。 #include <stdio.h> void main(void) int a = 5, b = 4, c = 6, d; printf(“%

3、dn”, d=a>b?(a>c?a: c): b); a) 5 b) 4 c) 6 d) 不确定5、执行以下程序后的输出结果是( ) #include <stdio.h> void main(void) char a=”abc0abc”;printf(“%s”, a); a) abc0abc b) abc c) abc0 d) abc6、当调用函数时,实参是一个数组名,则向函数传送的是( )。a) 数组的长度 b) 数组的首地址c) 数组每一个元素的地址 d) 数组每个元素中的值7、执行以下程序后,a的值为( )。 int *p, a = 10, b=1; p = &a

4、mp;a; a = *p + b; a) 12 b) 编译出错 c) 10 d) 118、以下正确的叙述是( )。a) 在c语言中,main函数必须位于文件的开头b) c语言每行中只能写一条语句c) c语言本身没有输入、输出语句d) 对一个c语言进行编译预处理时,可检查宏定义的语法错误9、以下程序的输出结果是( )。 void main(void) int a = 4, b = 5, c = 0, d; d = !a && !b | !c; printf(“%dn”, d); a) 1 b) 0 c) 非0的数 d) 110、执行以下程序段后,变量y的值是( )。 int x,

5、 y; x = 1; y = (+x*5); a) 5 b) 10 c) 15 d) 20 单项选择题答题卡12345678bbacdbdc910ab评分标准:每题选对满分,选错0分。评阅人 得分 二、分析结果题(20分) 1、(9分)#include <stdio.h>void f(int c) int a=0; static int b=0; a+; b+; printf("%d: a=%d, b=%dn", c, a, b);void main(void) int i; for (i=1; i<=3; i+) f( i );运行结果为:1: a=1,

6、b=1 2: a=1,b=2 3: a=1,b=3评分标准:写对一行给3分,全写对给9分。2、(11分)#include <stdio.h>void main(void) int num,c; num=2004; do c=num%10; printf("%d",c); while(num/=10)>0); printf("n"); 运行结果为:4002评分标准:写对11分,否则0分。评阅人 得分三、程序填空题(每空4分,共20分)1、求1!+2!+3!+。+10! #include <stdio.h> void main(

7、void) float s = 0, t = 1;int n;for (n=1; n<=10 ; n+) t=t*n ; ss+t ; printf(“1!+2!+3!+。+10!=%f”, s); 评分标准:写对一个空4分。2、以下函数的功能是,把两个整数指针所指的存储单元中的内容进行交换。void exchange(int *x, int *y) int t;t=*y; *y = * x ; *x = t ;评分标准:写对一个空4分。评阅人 得分 四、程序设计题(30分)(1) sum=2+5+8+11+14-,输入正整数n,求sum的前n项和。(10分)void main()int

8、 n,i,t,sum=0; /1 分scanf("%d",&n); /1分t=2; /1分for(i=1;i<=n;i+) /2分 sum=sum+t; /2分 t=t+3; /2分 printf("sum=%d",sum); /1 分(2) 今有100块砖,需100人来搬,男搬4,女搬3,两个小孩搬一砖。问男、女、小孩各几何?(8分)# include "stdio.h" void main( ) int man,woman,child; /1分 for(man=0;man<=100;man+) /1分 for(

9、woman=0;woman<=100;woman+) /1分for(child=0;child<=100;child+) /1分if (8*man+6*woman+child=200 && man+woman+child=100) /2分printf("%d %d %dn",man,woman,child); /2分 (3)求一个矩阵外围元素之和。(12分)#include <stdio.h>#define n 4#define m 5double matrix_sum(double matrixm) double sum=0;int

10、 k;for (k=0;k<n;k+)sum=sum+matrixk0; sum=sum+matrixkm-1; /3分for (k=1;k<m-1;k+)sum=sum+matrix0k; sum=sum+matrixn-1k; /3 分return sum; /1 分void main() int i,j; double matrix_sourcenm; double t; double result; for (i=0;i<n;i+) for (j=0;j<m;j+)scanf("%lf",&t); / 1 分matrix_source

11、ij=t; / 2分 result=matrix_sum(matrix_source); /2 分 printf("%lfn",result);评阅人 得分二、 单项选择题(每题2分,共30分,注意:答案写在后面的答题卡内,否则0分)1、下面哪一个是正确的标识符( )a qbc? b bc$ c _bc d 2bc2、设有int a6=1,2,3,4,5,6,*p=a;则*(p+3)与(*a+3)的值为( )a 1,3 b 3,3 c 4,4 d 4,63、 设a、b、c、d、m、n均为int型变量,且a=5、b=6、c=7、d=8、m=2、n=2,则逻辑表达式(m=a&g

12、t;b)&&(n=c>d)运算后,n的值为( ) a 0 b 1 c 2 d 3 4、t为int类型,进入下面的循环之前,t的值为0 while( t=l ) 则以下叙述中正确的是( ) a 循环控制表达式的值为0 b 循环控制表达式的值为1 c 循环控制表达式不合法 d 以上说法都不对 5、设int i=4,j=8,k;则表达式k=(i+,+i,j+)的值为( )a 4 b 8 c 9 d 106、有宏定义 #define mult1(a,b) a*b #define mult2(a,b) (a)*(b)宏引用 y=mult1(3+2,5+8);z=mult2(3+2,

13、5+8)后,则y和z的值是( )。a y=65,z=65 b y=21,z=65c y=65,z=21 d y=21,z=217、若定义a为int型变量,则对指针变量p的正确初始化是( )。a int *p=a; b int *p=*a; c int p=&a; d int *p=&a;8、以下程序的输出结果是( ) main() int a=3; printf("%dn",(a+a-=a*a) ); a -6 b 12 c 0 d -12 9、在一个源文件中定义的全局变量的作用域为( )。a 本文件的全部范围 b 本程序的全部范围c 本函数的全部范围 d

14、从定义该变量的位置开始至本文件结束10、设有int i; i=7/2;printf(“%d”, i);则执行结果为( )a 3.5 b 3.50 c 3 d 3.011、在c语言中,合法的长整型常数是( ) a 0l b 4962710 c 324562& d 216d 12、以下选项中合法的字符常量是( ) a "b" b '010' c 68 d d 13、假定x和y为double型,则表达式x=2,y=x+3/2的值是( ) a 3.500000 b 3 c 2.000000 d 3.000000 14、设x、y均为整型变量,且x=10, y=

15、3,则以下语句的输出结果是( ) printf("%d,%dn",x-,-y); a 10,3 b 9,3 c 9,2 d 10,2 15、x、y、z被定义为int型变量,若从键盘给x、y、z输入数据,正确的输入语句是( )a input x、y、z; b scanf("%d%d%d",&x,&y,&z); c scanf("%d%d%d",x,y,z); d read("%d%d%d",&x,&y,&z); 单项选择题答题卡12345678cccbbbdd91011

16、12131415dcabddb评分标准:选对得满分,否则0分。评阅人 得分 二、分析结果题(23分) 1、(6分)#include “stdio.h”void main()int i=6,x,y;x=i+;y=+i;printf(“%d,%d”,x,y);运行结果为: 6 , 8 评分标准:写对一个数字得3分,全写对得6分。2、(5分)#include “stdio.h”void main()int a33=1,2,3,4,5,6,7,8,9;printf(“%d”,* (a1+2);运行结果为: 6 评分标准:写对得5分,否则0分。3、(6分)#include “stdio.h”void s

17、ub(int s , int t)int w; w=s;s=t;t=w;void main()int a,b;a=100;b=200;sub(a,b);printf(“%d,%d”,a,b);运行结果为: 100 , 200 评分标准:写对一个数字得3分,全写对得6分。4、(6分)# include “stdio.h” void main( ) int n; for (n=1;n<=20;n+) if (n%3!=0) continue;printf(“%3d”,n); 运行结果为: 3 6 9 12 15 18 评分标准:写对一个数字得1分,全写对得6分。三、程序填空题(每空2分,共1

18、6分)1 本程序能实现将若干个数按逆序存放,然后输出,请在横线上填写正确内容完成 程序。例如:原顺序为6,8,4,5,1逆序后为1,5,4,8,6 #define n 5void main( )int i , t; static int an=6,8,4,5,1;for(i=0;i< n / 2 ;i+) t=ai; ai=an-1-i; a n-1-i = t ; printf(“n”);for(i=0;i< n ;i+) printf(“%4d”,ai);评分标准:写对一个空得2分,全写对得8分。2 以下程序实现:输入三个整数,按从大到小的顺序输出,请在横线上填写正确内容完成程

19、序。void main( ) int x ,y , z, c ; scanf(“%d%d%d”,&x,&y,&z); if( y < z ) c=y; y=z; z=c; if( x < z ) c=x; x=z; z=c; if( x < y ) c=x; x=y; y=c; printf(“%d,%d,%d”,x, y, z); 评分标准:写对一个空得2分,全写对得8分。 四、程序设计题(31分)1 如果某个3位数的各位数字的立方之和等于该数本身,则这个3位数就是一个“水仙花”数,如153=13+33+53。编程打印所有的“水仙花”数。(10分)#

20、 include "stdio.h" void main( ) int ge,shi,bai,x; /1分 for(ge=0;ge<=9;ge+) /1分 for(shi=0;shi<=9;shi+) /1分for(bai=1;bai<=9;bai+) /1分x=ge+10*shi+100*bai; /2分if (x=ge*ge*ge+shi*shi*shi+bai*bai*bai) /3分printf("%d ",x); /1分 2. 编程实现函数void strcopy(char *dest_str,char *sour_str )

21、;要求该函数实现将sour_str中的内容拷贝到dest_str。(不许直接调用其他函数来实现,否则0分处理)(8分)void strcopy(char *dest_str,char *sour_str )int i=0; /1 分while(sour_stri) /2 分dest_stri=sour_stri; /2分i+; /1 分 dest_stri=0; /2 分3. 用指针做形参编写一个子函数,计算学生的最低分、最高分以及平均分,然后在主函数中从键盘输入10个学生的分数,并调用子函数,最后输出最低分、最高分及平均分(13分)#include "stdio.h"fl

22、oat calculatescore (float *s,int len,float *max,float *min) float ave=*s; /1分 *max=*s; /1分 *min=*s; /1分 int i; for(i=1;i<len;i+) /1分 if (*(s+i)>*max) /1分 *max=*(s+i); if (*(s+i)<*min) /1分 *min=*(s+i); ave=ave+*(s+i); /1分ave=ave/len; /1分return ave; /1分void main() float score10,max,min,averag

23、e; int i; printf("please the score of studentn"); for(i=0;i<10;i+) scanf("%f",&scorei); /1分 average=calculatescore(score,10,&max,&min); /2分 printf("max=%f,min=%f,average=%fn",max,min,average); /1分一、 单选题(15×2分)1、若有定义:int a=8, b=5, c; 执行语句c = a/b+0.4&#

24、160;;后,c的值为( b )。 a) 1.4 b) 1 c) 2.0 d) 22 、以下程序中,while 循环的次数是( b )。 #include <stdio.h> void main(void) int i = 0;while (i<10) if (i<1) continue;if (i= =5) break;i+; a) 1 b) 死循环,不能确定次数 c) 6 d) 103、以下程序的输出结果是( a )。 #include <stdio.h> void main(void) int a = 0, i;for (i=1; i<

25、5; i+) switch (i) case 0: case 3: a += 2; case 1: case 2: a += 3; default: a += 5; printf(“%dn”, a); a) 31 b) 13 c) 10 d) 204、执行以下程序段后的输出结果是( c )。 int x = 5; int m, n; n = (+x) + (+x); m = (x-) + (x-); printf(“%d %dn”, m, n); a) 14 10 b) 13 13 c) 14 14 d) 14 125、以下程序的输出结果是( c )。 #include <stdio.h

26、> void main(void) int a = 5, b = 4, c = 6, d; printf(“%dn”, d=a>b?(a>c?a: c): b); a) 5 b) 4 c) 6 d) 不确定6、执行以下程序后的输出结果是(d ) #include <stdio.h> void main(void) char a=”abc0abc”;printf(“%s”, a); a) abc0abc b) abc c) abc0 d) abc7、当调用函数时,实参是一个数组名,则向函数传送的是( b )。a) 数组的长度 b) 数组的首地址c) 数组每一个元素的

27、地址 d) 数组每个元素中的值8、执行以下程序后,a的值为( d )。 int *p, a = 10, b=1; p = &a; a = *p + b; a) 12 b) 编译出错 c) 10 d) 119、以下正确的叙述是( c )。a) 在c语言中,main函数必须位于文件的开头b) c语言每行中只能写一条语句c) c语言本身没有输入、输出语句d) 对一个c语言进行编译预处理时,可检查宏定义的语法错误10、下面正确的标识符是( a ) a) a2b3 b) int c) int abc d) 2a3b11、以下程序的输出结果是( a )。 void main(void) int a

28、 = 4, b = 5, c = 0, d; d = !a && !b | !c; printf(“%dn”, d); a) 1 b) 0 c) 非0的数 d) 112、执行以下程序段后,变量y的值是( b )。 int x, y; x = 1; y = (+x*5); a) 5 b) 10 c) 15 d) 2013、若已定义:int a9,*p=a;并在以后的语句中未改变p的值,则不能表示a1 地址的表达式是( c )。a) p+1 b) a+1 c) a+ d) +p14、函数调用strcat(strcpy(str1,str2),str3)的功能是( c )。a) 将串s

29、tr1复制到串str2中后再连接到串str3之后b) 将串str1连接到串str2之后再复制到串str3之后c) 将串str2复制到串str1中后再将串str3连接到串str1之后d) 将串str2连接到串str1之后再将串str1复制到串str3中15、在下列选项中,不正确的赋值语句是( d )。a) +t; b) n1=(n2=(n3=0); c) k=i= =j; d) a=b+c=1;二、 程序填空(16分)1、求1!+2!+3!+。+10! #include <stdio.h> void main(void) float s = 0, t = 1;int n;for (n

30、=1; n<=10 ; n+) t=t*n ; ss+t ; printf(“1!+2!+3!+。+10!=%f”, s); 2、以下程序是用来统计从键盘输入的一个正整数中各位数字中零的个数,并求各位数字中最大者。例如:1080其零的个数是2,各位数字中最大者是8。#include <stdio.h>void main(void) unsigned long num, max, t; int count; count=max=0; scanf("%ld", &num); do t= num%10 ; if(t=0) +count; else if(

31、max<t) max=t ; num/=10; while(num); printf("count=%d,max=%ldn", count, max); 3、下面程序的功能是:输出100以内能被3整除且个位数字为6的所有整数。#include <stdio.h>void main(void) int i, j;for(i=0; i<10; i+) j = i*10+6;if ( j%3!=0 ) continue;printf("%d",j);4、以下函数的功能是,把两个整数指针所指的存储单元中的内容进行交换。void excha

32、nge(int *x, int *y) int t;t=*y; *y = * x ; *x = t ;三、阅读程序,写出程序的输出结果(24分)1、include "stdio.h" void main( ) int i,j; for (i=0;i<4;i+) for (j=0;j<i;j+) printf(" "); for (j=0;j<4+i;j+)printf("*"); printf("n"); * * *2、#include <stdio.h>void f(int c) i

33、nt a=0; static int b=0; a+; b+; printf("%d: a=%d, b=%dn", c, a, b);void main(void) int i; for (i=1; i<=3; i+) f( i );1: a=1,b=1 2: a=1,b=2 3: a=1,b=33、#include <stdio.h>void main(void) int num,c; num=2004; do c=num%10; printf("%d",c); while(num/=10)>0); printf("n

34、");4002五、 编程(30分)(1)sum=2+5+8+11+14-,输入正整数n,求sum的前n项和。void main()int n,i,t,sum=0;scanf("%d",&n);t=2;for(i=1;i<=n;i+) sum=sum+t; t=t+3; printf("sum=%d",sum);(2)编程实现函数void strcopy(char *dest_str,char *sour_str );要求该函数实现将sour_str中的内容拷贝到dest_str。(不许直接调用其他函数来实现,否则0分处理) voi

35、d strcopy(char *dest_str,char *sour_str )int i=0;while(sour_stri)dest_stri=sour_stri;i+; dest_stri=0;(3)求一个矩阵外围元素之和。#include <stdio.h>#define n 4#define m 5double matrix_sum(double matrixm) double sum=0;int k;for (k=0;k<n;k+)sum=sum+matrixk0; sum=sum+matrixkm-1;for (k=1;k<m-1;k+)sum=sum+

36、matrix0k; sum=sum+matrixn-1k;return sum;void main() int i,j; double matrix_sourcenm; double t; double result; for (i=0;i<n;i+) for (j=0;j<m;j+)scanf("%lf",&t);matrix_sourceij=t; result=matrix_sum(matrix_source); printf("%lfn",result);(4)编写函数strcmp (s1,s2),按照字典顺序比较两个字符串s

37、1和s2,若两串相等返回0;若串s1>s2,则返回+1;若串s1<s2,则返回-1。(5)编程找出1000以内的满足勾股定理 的整数组(a,b,c)。评阅人 得分三、 选择题(共40分)1、 以下选项中合法的标识符是( )。(2分)aabc! babc# c_abc d2bc2、 以下说法中正确的是( )。(2分)ac语言程序总是从第一个定义的函数开始执行b在c语言程序中,要调用的函数必须在main()函数中定义cc语言程序总是从main()函数开始执行dc语言程序中的main()函数必须放在程序的开始部分3、 设有:int c1=5,c2=2,c3;则执行c3=c1/c2;后,c

38、3的值是( )。(2分)a2 b5/2 c2.5 d34、 设有:int i=4,j;j=i+;则执行printf(“%d,%d”,i,j);后,屏幕上显示的是( )。(2分)a5,5 b5,4 c4,5 d4,45、 程序中出现的&&是( )。(2分)a取地址运算符 b逻辑与运算符 c按位与运算符 d标识符6、 以下程序中,while 循环的次数是( )。(2分)#include <stdio.h>void main() int i=0;while (i<10) if (i=5) break;i+;a0 b10 c5 d67、 程序中出现的“5”是( )。(

39、2分)a整数常量 b字符常量 c字符串常量 d标识符8、 若定义a为int型变量,则对整型指针变量p的正确初始化( )。(2分)aint *p=a; bint *p=*a; cint p=&a; dint *p=&a;9、 x、y、z被定义为int型变量,若从键盘给x、y、z输入数据,正确的输入语句是( )。(2分)ainput x、y、z; bscanf(“%d%d%d”,&x,&y,&z);cscanf(“%d%d%d”,x,y,z); dread(“%d%d%d”,&x,&y,&z);10、设有:int x,a,b;根据a和

40、b的大小关系确定x的值,从下列式中选出合法的if语句( )。(2分)aif(a=b) x+; bif(a=<b) x+;cif (a!=b) x+; dif(a=>b) x+;11、设有:int a4=2,3,4,i;则执行完i=a1+a2;后,i的值为( )。(2分)a5 b7 c2 d412、以下正确的叙述是( )。(2分)a在c程序中,语句之间必须要用分号“;”分隔b若a是实型变量,c程序中允许赋值a=10,因此实型变量中允许存放整型c在c程序中,无论是整数还是实数,都能准确无误地表示d在c程序中,“/”是只能用于整数运算的运算符13、设有:int a=2,b=4,c=3,d

41、=4,m=4,n=3;执行(m=a>b)&&(n=c>d)后,n的值为( )。(2分)a1 b4 c3 d014、在下列运算符中,优先级最低的是( )。(2分)a&& b= c| d=15、以下选项中,与k=+n完全等价的表达式是( )。(2分)ak=n;n=n+1; bn=n+1;k=n; ck=+n; dk+=n+1;16、以下选项中合法的字符常量是( )。(2分)a“b” b68 cd dd17、函数调用strcat(str1,str2)的功能是( )。(2分)a将串str1连接到串str2之后b将串str2连接到串str1之后c将串str2复

42、制到串str1中d将串str1和串str2进行比较18、以下选项中,不合法的赋值语句是( )。(2分)aa+=3; bk=3; ca=b=c=0; da=3*4=2*1;19、以下选项中,合法的长整型常数是( )。(2分)a0l b65534 c32756& d453d20、在一个源文件中定义的全局变量的作用域为( )。(2分)a本源文件的全部范围 b本函数的全部范围c从定义该变量的位置开始至本源文件结束 d本程序的全部范围评阅人 得分 二、填空题(共40分) 1、 本程序功能是求解1×3×5×7×9×11,请在横线上填写正确内容完成程

43、序。(6分)#include <stdio.h>void main()int i,t; t=1; i=3; (3分)t=t*i; (3分) printf(“%d”,t);2、 本程序功能是求a,b二个数中的较大者,请在横线上填写正确内容完成程序。(6分)#include <stdio.h>void main()int a ,b , max ; scanf (“ %d ,%d ” ; &a , &b );if (3分) (3分) else max=b;printf (“max=%d “ ; max);3、 本程序功能是求一分数序列:2/1,3/2,5/3,

44、8/5前10项之和。请在横线上填写正确内容完成程序。(9分)#include <stdio.h>void main()int i,t;float a=2,b=1,s=0;for(i=1; ;i+)(3分) (3分)t=a; (3分) b=t;printf(“sum=%f”,s); 4、 本程序功能是输入十个整数,并统计大于0、等于0、小于0的个数。请在横线上填写正确内容完成程序。(9分)#include <stdio.h>void main( ) int a10,j,m=0,n=0,k=0;for( ; j<10; j+)(3分) (3分) printf(“n”)

45、;for( j=0 ; ; j+)(3分)if(aj>0) m=m+1; if(aj= =0) n=n+1;if(aj<0) k=k+1;printf(“m=%d,n=%d,k=%d”,m,n,k);5、 分析本程序,并在横线上填入程序的输出。(5分)#include <stdio.h>void main() char a,b; a='a' b='b' a=a-32; b=b-32; printf("%c %cn",a,b); 输出: (5分)6、 分析本程序,并在横线上填入程序的输出。(5分)#include “st

46、dio.h”void main( ) int n; for (n=1;n<=20;n+) if (n%3!=0) continue;printf(“%dt”,n);输出: (5分)评阅人 得分三、编程题(共20分)1、 编写程序判断m是否为素数,m值由用户输入。(10分)2、 编写程序用函数递归方法求n!。(10分)评阅人 得分四、 单项选择题(每题2分,共30分)1 有以下程序1 有以下程序main() int x8=8,7,6,5,0,0,*s; s=x+3; printf("%dn",s2); 执行后输出结果是( b )a)随机值 b)0 c)5 d)62 以下叙述中正确的是( b )a)全局变量的作用域一定比局部变量的作用域范围大b)静态(static)类别变量的生存期贯穿于整个程序的运行期间c)函数的形参都属于全局变量d)未在定义语句中赋初值的auto变量和static变量的初值都是随机值3 设有如下定义struct ss char name10; int age; char sex; std3,*p=std;下面各输入语句中错误的是( b ) a)scanf("%d",&(*

温馨提示

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

评论

0/150

提交评论