c語言復(fù)習(xí)題答案(49題)_第1頁
c語言復(fù)習(xí)題答案(49題)_第2頁
c語言復(fù)習(xí)題答案(49題)_第3頁
c語言復(fù)習(xí)題答案(49題)_第4頁
c語言復(fù)習(xí)題答案(49題)_第5頁
已閱讀5頁,還剩48頁未讀 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)

文檔簡介

1、一、 順序結(jié)構(gòu)程序設(shè)計=1 已知三角形的三邊長為a,b,c,計算三角形面積的公式為:area = ,s=要求編寫程序,從鍵盤輸入a,b,c的值,計算并輸出三角形的面積。#include<stdio.h>#include<math.h>void main() float a,b,c,s,area; scanf("%f,%f,%f",&a,&b,&c); s=1.0/2*(a+b+c); area=sqrt(s*(s-a)*(s-b)*(s-c); printf("a=%7.2f, b=%7.2f, c=%7.2f, s

2、=%7.2fn",a,b,c,s); printf("area=%7.2fn",area);2 編程從鍵盤輸入圓的半徑r,計算并輸出圓的周長和面積。#include "stdio.h"#define Pi 3.14void main()float r,c,area;printf("請輸入圓的半徑:");scanf("%f",&r);c=2*Pi*r;area=Pi*r*r;printf("該圓的周長是%.2f,面積是%.2fn",c,area);二、 選擇結(jié)構(gòu)程序設(shè)計= 1 從

3、鍵盤任意輸入一個年號,判斷它是否是閏年。若是閏年,輸出“Yes”,否則輸出“No”。已知符合下列條件之一者是閏年:¡ 能被4整除,但不能被100整除。¡ 能被400整除。#include <stdio.h>main()int year, flag;printf("Enter year:");scanf("%d",&year );if (year % 4 = 0 && year % 100 != 0) | (year % 400 = 0) flag = 1; /*如果year是閏年,則標(biāo)志變量flag

4、置1*/elseflag = 0; /*否則,標(biāo)志變量flag置0*/if (flag) printf("%d is a leap year!n",year); /*打印“是閏年”*/elseprintf("%d is not a leap year!n",year); /* 打印“不是閏年”*/2 通過鍵盤輸入一個字符,判斷該字符是數(shù)字字符、大寫字母、小寫字母、空格還是其他字符。#include <stdio.h>main()char ch;scanf("%c",ch);if (ch >= 97 &&

5、; ch <= 122) | (ch >= 65 && ch <= 98)printf("It is an English character!n");else if (ch <= 57 && ch >= 48) printf("It is a digit character!n");else if (ch = 95) printf("It is a space character!n");elseprintf("It is other character!n&q

6、uot;);3 華氏和攝氏溫度的轉(zhuǎn)換公式為C=5/9×(F-32)。其中,C表示攝氏溫度,F(xiàn)表示華氏溫度。要求:華氏0300,每隔20輸出一個華氏溫度對應(yīng)的攝氏溫度值。#include <math.h>#include <stdio.h>main()int upper,step;float fahr = 0,celsius;upper = 300;step = 20;while ( fahr< upper) celsius = 5.0 / 9 * (fahr - 32); printf("%4.0ft%6.1fn", fahr, ce

7、lsius); fahr = fahr + step;4 編程判斷輸入整數(shù)的正負(fù)性和奇偶性。 #include <stdio.h>main()int m;printf("Input m: ");scanf("%d", &m);/*輸入一個整數(shù)*/if (m > 0)/*是否為正數(shù)*/if (m%2 = 0)/*是正數(shù),且能被2整除,則是正偶數(shù)*/printf("%d is a positive evenn", m);else/*不能被2整除,則是正奇數(shù)*/printf("%d is a positi

8、ve oddn", m);else if(m < 0)/*判斷是否為負(fù)數(shù)*/if (m % 2 = 0)printf("%d is a negative evenn", m);/*是負(fù)偶數(shù)*/elseprintf("%d is a negative oddn", m);/*是負(fù)奇數(shù)*/elseprintf("%d is zero. It is an evenn", m);/*是0*/5 編程計算分段函數(shù) 輸入x,打印出y值。流程圖如圖1-2所示。#include <stdio.h>#include <

9、math.h>main()int x;double y;printf("Input x: ");scanf("%d", &x);/* 輸入一個整數(shù)*/if (x > 0)y = exp(-x);/*如果大于0,計算y=exp(-x)的值 */else if (x = 0)y = 1;/*x=0,則y=1*/elsey = -exp(x);/*x<0,則y=-exp(x)*/printf("y=%fn", y);6 輸入三角形的三條邊a,b,c,判斷它們能否構(gòu)成三角形。若能構(gòu)成三角形,指出是何種三角形(等腰三角

10、形、直角三角形、一般三角形)。#include <stdio.h>#include <math.h>#define LIMIT 1e-1main()float a, b, c;int flag = 1;printf("Input the three edge length: ");scanf("%f, %f, %f", &a, &b , &c);/*輸入三角形的三條邊*/*三角形的基本條件*/if (a + b) > c && (b + c) > a) && (a

11、 + c) > b)if (fabs(a-b) <= LIMIT | fabs(b-c) <= LIMIT| fabs(c-a) <= LIMIT) /*等腰三角形的條件*/printf("等腰");flag = 0;if (fabs(a * a + b * b - c * c) <= LIMIT| fabs(a * a + c * c - b * b) <= LIMIT| fabs(c * c + b * b - a * a) <= LIMIT) /*直角三角形的條件 */printf("直角");flag =

12、 0;if (flag)printf("一般");printf("三角形n");elseprintf("不是三角形n");7 在屏幕上顯示一張如下所示的時間表: *Time* 1 morning 2 afternoon 3 night Please enter your choice:操作人員根據(jù)提示進(jìn)行選擇,程序根據(jù)輸入的時間序號顯示相應(yīng)的問候信息,選擇1時顯示"Good morning", 選擇2時顯示"Good afternoon", 選擇3時顯示"Good night"

13、;,對于其他選擇顯示"Selection error!",用switch語句編程實現(xiàn)。#include <stdio.h>main()char c;printf("*Time*n");printf("1 morning n");printf("2 afternoon n");printf("3 night n");printf("please enter your choice");/*建立相應(yīng)的菜單 */c = getchar();/*輸入選項*/switch

14、(c)/*通過switch選擇 */case 1:printf("Good morning n");break;case 2:printf("Good afternoon n");break;case 3:printf("Good nightn");break;default:printf("Selection error!n");8 讀入一個年份和月份,打印出該月有多少天(考慮閏年),用switch語句編程。#include <stdio.h>main()int year, month;printf(

15、"Input year,month: ");scanf("%d, %d", &year, &month);/*輸入相應(yīng)的年和月*/switch (month)case 1:case 3:case 5:case 7:case 8:case 10:case 12:printf("31 daysn");break;case 2:if(year % 4= 0 && year % 100 != 0)|(year % 400 = 0)printf("29 daysn");/*閏年的2月有29天

16、*/elseprintf("28 daysn");/*平年的2月有28天 */break;case 4:case 6:case 9:case 11:printf("30 daysn");break;default:printf("Input error!n");三、 循環(huán)結(jié)構(gòu)程序設(shè)計=1 編程計算1!+2!+3!+4!+10!的值。#include <stdio.h>main()long term = 1,sum = 0;int i;for (i = 1; i <= 10; i+)term = term * i;su

17、m = sum + term;printf("1!+2!+.+10! = %ld n", sum);2 編程計算 a+aa+aaa+aaa(n個a)的值,n和a的值由鍵盤輸入。#include <stdio.h>main()long term = 0,sum = 0;int a , i, n;printf("Input a,n: ");scanf("%d,%d", &a, &n);/*輸入a,n的值*/for (i = 1; i <= n; i+)term = term * 10 + a;/*求出累加

18、項*/sum = sum + term;/*進(jìn)行累加*/printf("sum=%ldn",sum);3 利用=×的前100項之積計算p的值。#include <stdio.h>main()double term, result = 1;/*累乘項初值應(yīng)為1*/int n;for (n = 2; n <= 100; n = n + 2)term = (double)( n * n)/( n - 1) * ( n + 1);/*計算累乘項*/result = result * term;printf("result = %fn"

19、, 2*result);4 計算,直到最后一項的絕對值小于10-4為止。#include <stdio.h>#include <math.h>main()int n = 1;float term = 1.0, sign = 1,sum = 0;while (fabs(term) >= 1e-4)/*判斷末項大小*/term = sign / n;/*求出累加項*/sum = sum + term;/*累加*/sign = -sign;/*改變項的符號*/n+;/*分母加1*/printf("sum = %fn", sum);5 利用泰勒級數(shù)si

20、n(x)計算sin(x) 的值。要求最后一項的絕對值小于10-5,并統(tǒng)計出此時累加了多少項。#include <math.h>#include <stdio.h>main()int n = 1,count = 1;float x;double sum , term; /*因為位數(shù)多,所以定義為雙精度 */printf("Input x: ");scanf("%f", &x);sum = x;term = x; /*賦初值*/doterm = -term * x * x / (n + 1) * (n + 2);sum = s

21、um + term; /*累加 */n = n + 2;count+;while (fabs(term) >= 1e-5);printf("sin(x) = %f, count = %dn", sum, count);6 打印所有的“水仙花數(shù)”。所謂“水仙花數(shù)”,是指一個三位數(shù),其各位數(shù)字的立方和等于該數(shù)本身。例如,153是“水仙花數(shù)”,因為153=13+33+53。#include <stdio.h>main()int i, j, k, n;printf("result is:");for (n = 100; n < 1000;

22、 n+)i = n / 100;/*分出百位*/j = (n - i * 100) / 10;/*分出十位*/k = n % 10;/*分出個位*/if (i*100 + j*10 + k = i*i*i + j*j*j + k*k*k)printf("%dt ",n);/*輸出結(jié)果*/printf("n");7 從鍵盤任意輸入一個4位數(shù)x,編程計算x的每一位數(shù)字相加之和(忽略整數(shù)前的正負(fù)號)。例如,輸入x為1234,則由1234分離出其千位1、百位2、十位3、個位4,然后計算1+2+3+4=10,并輸出10。#include <stdio.h&g

23、t;#include <math.h>main()int i1, i2, i3, i4, k, n;printf("Input data is:");scanf("%d", &n);k = fabs(n);/*取絕對值*/i1 = k / 1000;/*分離出千位*/i2 = (k - i1 * 1000) / 100;/*分離出百位*/i3 = (k - i1 * 1000 - i2 * 100) / 10;/*分離出十位*/i4 = k % 10;/*分離出個位*/printf("The sum of the total

24、 bit is %dn", i1+i2+i3+i4);8 三色球問題。若一個口袋中放有12個球,其中有3個紅色的,3個白色的,6個黑色的,從中任取8個球,問共有多少種不同的顏色搭配?#include <stdio.h>main()int i, j, k;for (i = 0; i <= 3; i+)for (j = 0; j <= 3; j+)for (k = 0; k <= 6; k+)if (i + j + k = 8)printf("i=%d, j=%d, k=%dn", i, j, k);9 編程打印以下圖案。 * * * *

25、 * * * *(1) (2) (3)#include <stdio.h>main()int i, j, k;for (i = 1; i<= 4; i+)/*i控制行數(shù)*/for (j = 1; j <= 4-i; j+)/* 隨行數(shù)的增加,輸出遞減數(shù)目的空格*/printf(" ");for (k = 1; k <= 6; k+)/*每行輸出6個*字符*/printf("*");printf("n");/*將光標(biāo)移到下一行起始位置處*/10 按如下格式打印100以內(nèi)整數(shù)的平方根表。#include &l

26、t;stdio.h>#include <math.h>main()int m, n, i;for (m = 0; m < 10; m+)printf("%7d", m);/*打印表頭*/printf("n");for (n = 0; n < 10; n+)/*乘數(shù)n從1變化到9*/printf("%d", n);/*輸出每行的開頭數(shù)字*/for (m = 0; m < 10; m+)/*被乘數(shù)m從1變化到9*/printf(" %4.3f ", sqrt(n * 10 + m);

27、/*輸出第m行n列中的值*/printf("n");/*輸出換行符,準(zhǔn)備打印下一行*/四、 一維數(shù)組= 1 下面程序模擬了骰子的6000次投擲,用rand函數(shù)產(chǎn)生16之間的隨機(jī)數(shù)face,然后統(tǒng)計16每一面出現(xiàn)的機(jī)會(概率)存放到數(shù)組frequency中。#include <stdlib.h>#include <time.h>#include <stdio.h>main()int face, roll, frequency7 = 0;srand(time (NULL);for (roll=1; roll<=6000; roll+)f

28、ace = rand()%6 + 1; +frequencyface;printf("%4s%17sn", "Face", "Frequency");for (face=1; face<=6; face+) printf("%4d%17dn", face, frequencyface);2 從鍵盤輸入10個整型數(shù)據(jù),放入數(shù)組a 中,求其最大值、最小值及其所在元素的下標(biāo)位置,并輸出。#include <stdio.h>main()int a10, n, max, min, maxPos, minPo

29、s;for (n=0; n<10; n+)scanf("%d",&an);max = min = a0;maxPos = minPos = 0;for (n=0; n<10; n+) if (an > max) max = an; maxPos = n; else if (an < min) min = an;minPos = n;printf("max=%d, pos=%dn",max, maxPos);printf("min=%d, pos=%dn",min, minPos);3 編程實現(xiàn)從鍵盤任意

30、輸入20個整數(shù),統(tǒng)計非負(fù)數(shù)個數(shù),并計算非負(fù)數(shù)之和。#include <stdio.h>main()int i, n, sum = 0, counter = 0;printf("Input 20 Numbers:n"); for (i=0; i < 20; i+)scanf("%d", &n); if (n >= 0) /*判斷是否為非負(fù)數(shù)*/ sum += n; /*非負(fù)數(shù)求和*/ counter+; /*非負(fù)數(shù)個數(shù)計數(shù)*/ printf("sum=%d,counter=%dn", sum,counte

31、r);4 從鍵盤任意輸入10個整數(shù),用函數(shù)編程實現(xiàn)將其中最大數(shù)與最小數(shù)的位置對換后,再輸出調(diào)整后的數(shù)組。#include <stdio.h>#define ARR_SIZE 10/*函數(shù)功能: 找出n個數(shù)中的最大數(shù)與最小數(shù)并將其位置對換函數(shù)參數(shù): 整型數(shù)組a, 存放待處理數(shù)據(jù)整型變量n,為數(shù)據(jù)個數(shù) 返回值: 無*/void MaxMinExchang(int a, int n)int maxValue = a0, minValue = a0, maxPos = 0, minPos = 0;int i, temp;for (i=1; i<n; i+)if (ai > ma

32、xValue)maxValue = ai; maxPos = i; if (ai < minValue)minValue = ai; minPos = i; temp = amaxPos;amaxPos = aminPos;aminPos = temp;main()int aARR_SIZE, i, n;printf("Input n(n<=10):");scanf("%d", &n) ;printf("Input %d Numbers:n", n); for (i=0; i<n; i+) scanf(&qu

33、ot;%d", &ai); MaxMinExchang(a, n);printf("After MaxMinExchange:n");for (i=0; i<n; i+) printf("%4d", ai);printf("n") ;五、 二維數(shù)組= 1 輸入5×5階的矩陣,編程實現(xiàn):(1)求兩條對角線上的各元素之和。(2)求兩條對角線上行、列下標(biāo)均為偶數(shù)的各元素之積。#include <stdio.h>#define ARR_SIZE 10main()int aARR_SIZEARR_S

34、IZE, i, j, n, sum = 0;long product = 1;printf("Input n:");scanf("%d", &n) ;printf("Input %d*%d matrix:n", n, n);for (i=0; i<n; i+) for (j=0; j<n; j+) scanf("%d",&aij); for (i=0; i<n; i+)for (j=0; j<n; j+) if (i = j | i+j = n-1)sum += aij;if

35、 (i = j | i+j = n-1) && i%2 = 0 && j%2 = 0)product *= aij; printf("sum = %dnproduct = %ldn", sum, product);2 編程打印如下形式的楊輝三角形。 11 11 2 11 3 3 11 4 6 4 11 5 10 10 5 1#include<stdio.h>#define ARR_SIZE 11void YHTriangle(int aARR_SIZE, int n);void PrintYHTriangle(int aARR_S

36、IZE, int n);main()int aARR_SIZEARR_SIZE, n; printf("input n (n<=10):"); scanf("%d",&n); /*根據(jù)要求輸入楊輝三角形的行數(shù)*/ YHTriangle(a,n);PrintYHTriangle(a,n);/*函數(shù)功能: 計算楊輝三角形中各元素數(shù)值函數(shù)參數(shù): 整型數(shù)組a,存放計算得到的楊輝三角形數(shù)據(jù)整型變量n,代表楊輝三角形的行數(shù)函數(shù)返回值:無*/void YHTriangle(int aARR_SIZE, int n)int i, j ;for (i=1;

37、i<=n; i+) ai1 = 1; aii = 1; for (i=3; i<=n; i+) for (j=2; j<=i-1; j+) aij = ai-1j-1 + ai-1j; /* 函數(shù)功能: 輸出楊輝三角形函數(shù)參數(shù): 整型數(shù)組a,存放楊輝三角形數(shù)據(jù)整型變量n,代表楊輝三角形的行數(shù)函數(shù)返回值:無*/void PrintYHTriangle(int aARR_SIZE, int n)int i , j ; for (i=1; i<=n; i+)for (j=1; j<=i; j+) printf("%4d", aij); printf(

38、"n"); 3 利用公式cij=aij+bij計算m×n階矩陣A和m×n階矩陣B之和。已知aij為矩陣A的元素,bij為矩陣B的元素,cij為矩陣C的元素(i=1,2,m;j=1,2,n)。#include<stdio.h>#define ROW 2#define COL 3/* 函數(shù)功能: 輸入矩陣元素,存于數(shù)組a中 函數(shù)參數(shù): 整型數(shù)組a,存放矩陣元素 返回值: 無*/void InputMatrix(int aROWCOL)int i , j ;for (i=0; i<ROW; i+) for (j=0; j<COL; j+

39、) scanf("%d", &aij); /*函數(shù)功能: 計算矩陣之和,即計算數(shù)組a、b對應(yīng)位置數(shù)據(jù)相加之和,結(jié)果存于數(shù)組c中 函數(shù)參數(shù): 整型數(shù)組a、b,分別存放兩個待求和的矩陣元素整型數(shù)組c,存放矩陣求和結(jié)果 返回值: 無*/void AddMatrix(int aROWCOL, int bROWCOL, int cROWCOL)int i , j ;for (i=0; i<ROW; i+) for (j=0; j<COL; j+) cij = aij + bij; /*函數(shù)功能: 輸出矩陣a中的元素函數(shù)參數(shù): 整型數(shù)組a,存放矩陣元素返回值: 無*

40、/void PrintMatrix(int aROWCOL)int i , j ;for (i=0; i<ROW; i+)for (j=0; j<COL; j+) printf("%6d", aij); printf("n");main()int aROWCOL, bROWCOL, cROWCOL;printf("Input 2*3 matrix a:n");InputMatrix(a); printf("Input 2*3 matrix b:n");InputMatrix(b);AddMatrix(a

41、, b, c);printf("Results:n");PrintMatrix(c);4* 利用公式cij=*bkj計算矩陣A和矩陣B之積。已知aij為m×n階矩陣A的元素(i=1,2,m;j=1,2,n),bij為n×m階矩陣B的元素(i=1,2,n;j=1,2,m),cij為m×m階矩陣C的元素(i=1,2,m;j=1,2,m)。#include<stdio.h>#define ROW 2#define COL 3/* 函數(shù)功能: 計算矩陣相乘之積,結(jié)果存于數(shù)組c中 函數(shù)參數(shù): 整型數(shù)組a、b,分別存放兩個待求乘積的矩陣元素 整

42、型數(shù)組c,存放矩陣相乘的結(jié)果 返回值: 無*/MultiplyMatrix(int aROWCOL, int bCOLROW, int cROWROW)int i, j, k;for (i=0; i<ROW; i+)for (j=0; j<ROW; j+) cij = 0;for (k=0; k<COL; k+)cij = cij + aik * bkj; /* 函數(shù)功能: 輸出矩陣a中的元素 函數(shù)參數(shù): 整型數(shù)組a,存放矩陣元素 返回值: 無*/void PrintMatrix(int aROWROW)int i , j ;for (i=0; i<ROW; i+)fo

43、r (j=0; j<ROW; j+) printf("%6d", aij); printf("n");main()int aROWCOL, bCOLROW, cROWROW, i, j;printf("Input 2*3 matrix a:n");for (i=0; i<ROW ;i+)for (j=0; j<COL; j+)scanf("%d", &aij); printf("Input 3*2 matrix b:n");for (i=0; i<COL; i+)

44、 for (j=0; j<ROW; j+)scanf("%d", &bij ); MultiplyMatrix(a, b, c);printf("Results:n");PrintMatrix(c);六、字符數(shù)組= 1 輸入一行字符,統(tǒng)計其中的英文字符、數(shù)字字符、空格和其他字符的個數(shù)。#include <stdio.h>#include <string.h>#define ARR_SIZE 80main()char strARR_SIZE;int len, i, letter = 0, digit = 0, spac

45、e = 0, others = 0; printf("Please input a string:"); gets(str); for (i=0; stri!='0' i+)if (stri>='a' && stri<='z' | stri>='A' && stri<='Z') letter +;/*統(tǒng)計英文字符*/ else if (stri >= '0' && stri <= '9&#

46、39; ) digit +;/*統(tǒng)計數(shù)字字符*/ else if (stri = ' ' ) space +;/*統(tǒng)計空格*/ elseothers +;/*統(tǒng)計其他字符的個數(shù)*/ printf("English character: %dn", letter); printf("digit character: %dn", digit); printf("space: %dn", space);printf("other character: %dn", others);2 編寫一個程序,實現(xiàn)將字

47、符數(shù)組中的字符串逆序存放的功能。#include <stdio.h>#include <string.h>#define ARR_SIZE 80void Inverse(char str, char ptr);main()char aARR_SIZE, bARR_SIZE; printf("Please enter a string: "); gets(a); Inverse(a, b); printf("The inversed string is: ");puts(b);/*函數(shù)功能: 實現(xiàn)將字符數(shù)組中的字符串逆序存放 函數(shù)參

48、數(shù): 字符數(shù)組a,存放源字符串 字符數(shù)組b,存放逆序字符串函數(shù)返回值:無*/void Inverse(char str, char ptr) int i = 0, j; j = strlen(str) - 1; while (stri != '0') ptrj = stri; i+;j-; ptri='0'3 從鍵盤輸入一行字符,統(tǒng)計其中有多少單詞。假設(shè)單詞之間以空格分開。#include <stdio.h>main()char str20;int i, num;gets(str);if (str0 != ' ')num = 1;el

49、senum = 0;for (i=1; stri!='0' i+)if (stri != ' ' && stri-1 = ' ' ) num+;printf("num=%dn", num);4 編寫一個程序,其功能是刪除字符串s中所出現(xiàn)的與變量c相同的字符。#include <stdio.h>void Squeeze(char s, char c);main()char str20,c;printf("Input string:");gets(str);printf("

50、Input character:");c = getchar();Squeeze(str,c);puts(str);void Squeeze(char s, char c)int i,j;for (i=j=0; si != '0' i+) if (si != c) sj = si ;j+; sj = '0'5 不用函數(shù)strcat(),編程實現(xiàn)字符串連接函數(shù)strcat()的功能,將字符串srcStr連接到字符串dstStr的尾部。#include <stdio.h>#include <string.h>#define ARR_SIZE 80void MyStrcat(char d

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論