C++語(yǔ)言程序設(shè)計(jì)課后答案.doc_第1頁(yè)
C++語(yǔ)言程序設(shè)計(jì)課后答案.doc_第2頁(yè)
C++語(yǔ)言程序設(shè)計(jì)課后答案.doc_第3頁(yè)
C++語(yǔ)言程序設(shè)計(jì)課后答案.doc_第4頁(yè)
C++語(yǔ)言程序設(shè)計(jì)課后答案.doc_第5頁(yè)
已閱讀5頁(yè),還剩7頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

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

文檔簡(jiǎn)介

1、第 二 章C+簡(jiǎn)單程序設(shè)計(jì)解:int yourAge = 39;2-10 執(zhí)行完下列語(yǔ)句后,a、 b、 c 三個(gè)源程序:cout I am: myAge years變量的值為多少?#include old.n;a = 30;int main()cout You are: yourAge yearsb = a+;oldn;c = +a;int i;myAge+; / postfix incrementa: 32 ; b:30; c:32;cout i;cout One year passes.n;100 到 200,步長(zhǎng)為 2;然后用 while 和cout 您輸入一個(gè)數(shù)字是 i endl;co

2、ut I am: myAge yearsdo while 語(yǔ)句完成同樣的循環(huán)。return 0;old.n;解:cout You are: yourAge yearsfor 循環(huán):程序運(yùn)行輸出:oldn;for (int n = 100; n = 200; n += 2);2-20 打印 ASCII碼為 32127 的字符。cout Another year passesn;while 循環(huán):#include cout I am: myAge+ yearsint x = 100;int main()old.n;while (n = 200)cout You are: +yourAge n +=

3、 2;for (int i = 32; i128; i+)years oldn;do while 循環(huán):cout (char) i;cout Lets print it again.n;int n = 100;return 0;cout I am: myAge yearsdoold.n;程序運(yùn)行輸出:cout You are: yourAge yearsn += 2;!#$%G()*+ , ./0123456789:;?ABCDEoldn; while(n = 200);FGHIJKLMNOP_QRSTUVWXYZabcdefgreturn 0;2-17 修改下面這個(gè)程序中的錯(cuò)誤,改正hijk

4、lmnopqrstuvwxyzs后它的運(yùn)行結(jié)果是什么?2-21 運(yùn)行下面的程序,觀察其輸出,與解:#include 你的設(shè)想是否相同?程序運(yùn)行輸出:void main()#include I am 39 years oldint iint main()You are 39 years oldint j;One year passesi = 10; /*給 i 賦值unsigned int x;I am 40 years oldj = 20; /*給 j 賦值 */unsigned int y = 100;You are 40 years oldcout i + j = i + j; /*輸出結(jié)

5、果 */unsigned int z = 50;Another year passesreturn 0;x= y - z;I am 40 years oldcout Difference is: x;You are 41 years old解:x = z - y;Lets print it again改正:cout nNow difference is: xI am 41 years old#include endl;You are 41 years oldint main()return 0;2-28 編寫一個(gè)完整的程序,實(shí)現(xiàn)功能:向用戶提問 現(xiàn)在正在下雨嗎? ,提示int i;程序運(yùn)行輸出

6、:用戶輸入 Y 或 N。若輸入為 Y,顯示 現(xiàn)int j;Difference is: 50在正在下雨。 ; 若輸入為 N,顯示 現(xiàn)i = 10; / 給 i 賦值Now difference is: 4294967246在沒有下雨。 ;否則繼續(xù)提問 現(xiàn)在正j = 20; /*給 j 賦值 */注意,第二行的輸出并非-50,注意 x、在下雨嗎? cout i + j = i + j; /*輸出結(jié)果 */y、 z 的數(shù)據(jù)類型。源程序:return 0;2-22 運(yùn)行下面的程序,觀察其輸出,體#include 會(huì) i+與+i 的差別。#include 程序運(yùn)行輸出:#include void ma

7、in()i + j = 30int main()2-18 編寫一個(gè)程序,運(yùn)行時(shí)提示輸入一char flag;個(gè)數(shù)字,再把這個(gè)數(shù)字顯示出來(lái)。int myAge = 39; / initialize two integerswhile(1)cout flag;if ( toupper(flag) = Y)cout 現(xiàn)在正在下雨。 ; break;if ( toupper(flag) = N)cout 現(xiàn)在沒有下雨。;break;程序運(yùn)行輸出:現(xiàn)在正在下雨嗎? (Yes or No):x 現(xiàn)在正在下雨嗎? (Yes or No):l 現(xiàn)在正在下雨嗎? (Yes or No):q 現(xiàn)在正在下雨嗎? (

8、Yes or No):n現(xiàn)在沒有下雨?;颍含F(xiàn)在正在下雨嗎?(Yes or No):y現(xiàn)在正在下雨。2-29 編寫一個(gè)完整的程序,運(yùn)行時(shí)向用戶提問 你考試考了多少分? (0100),接收輸入后判斷其等級(jí),顯示出來(lái)。規(guī)則如下:解:#include void main()int i,score;cout score;if (score100 | score0)cout 分?jǐn)?shù)值必須在 0 到 100 之間 !; elsei = score/10;switch (i)case 10:case 9:cout 你的成績(jī)?yōu)閮?yōu)! ; break;case 8:cout 你的成績(jī)?yōu)榱迹?break;case 7:

9、case 6:cout 你的成績(jī)?yōu)橹校?break;default:cout 你的成績(jī)?yōu)椴睿?程序運(yùn)行輸出:你考試考了多少分?(0100):85你的成績(jī)?yōu)榱迹?-31 用窮舉法找出 1100 間的質(zhì)數(shù),顯示出來(lái)。分別使用 while ,do-while , for循環(huán)語(yǔ)句實(shí)現(xiàn)。解:源程序:使用 while 循環(huán)語(yǔ)句:#include #include void main()int i,j,k,flag;i = 2;while(i = 100)flag = 1;k = sqrt(i);j = 2;while (j = k)if(i%j = 0)flag = 0;break;j+;if (flag

10、)cout i 是質(zhì)數(shù) . endl;i+;使用 dowhile 循環(huán)語(yǔ)句:#include #include void main()int i,j,k,flag;i = 2;doflag = 1;k = sqrt(i);j = 2;doif(i%j = 0)flag = 0;break;j+;while (j = k);if (flag)cout i 是質(zhì)數(shù) . endl; i+;while(i = 100);使用 for 循環(huán)語(yǔ)句:#include #include void main()int i,j,k,flag;for(i = 2; i = 100; i+)flag = 1;k =

11、sqrt(i);for (j = 2; j = k; j+)if(i%j = 0)flag = 0;break;if (flag)cout i 是質(zhì)數(shù) . endl;程序運(yùn)行輸出:2是質(zhì)數(shù).3是質(zhì)數(shù).5是質(zhì)數(shù).7是質(zhì)數(shù).11 是質(zhì)數(shù) .13 是質(zhì)數(shù) .17 是質(zhì)數(shù) .19 是質(zhì)數(shù) .23 是質(zhì)數(shù) .29 是質(zhì)數(shù) .31 是質(zhì)數(shù) .37 是質(zhì)數(shù) .41 是質(zhì)數(shù) .43 是質(zhì)數(shù) .47 是質(zhì)數(shù) .53 是質(zhì)數(shù) .59 是質(zhì)數(shù) .61 是質(zhì)數(shù) .67 是質(zhì)數(shù) .71 是質(zhì)數(shù) .73 是質(zhì)數(shù) .79 是質(zhì)數(shù) .83 是質(zhì)數(shù) .89 是質(zhì)數(shù) .97 是質(zhì)數(shù) .2-33 定義一個(gè)表示時(shí)間的結(jié)構(gòu)體,可以精確

12、表示年、月、日、小時(shí)、分、秒;提示用戶輸入年、月、日、小時(shí)、分、秒的值,然后完整地顯示出來(lái)。解:源程序見 實(shí)驗(yàn)指導(dǎo) 部分實(shí)驗(yàn)二2-34 在程序中定義一個(gè)整型變量,賦以1100 的值,要求用戶猜這個(gè)數(shù), 比較兩個(gè)數(shù)的大小,把結(jié)果提示給用戶,直到猜對(duì)為止。分別使用while 、 dowhile語(yǔ)句實(shí)現(xiàn)循環(huán)。解:/ 使用 while 語(yǔ)句#include void main() int n = 18;int m = 0;while(m != n)cout m;if (n m)cout 你猜的值太小了! endl; else if (n m)cout 你猜的值太大了! endl; elsecout 你

13、猜對(duì)了! endl;/ 使用 dowhile 語(yǔ)句#include void main() int n = 18;int m = 0;docout m;if (n m)cout 你猜的值太小了! endl; else if (n m)cout 你猜的值太大了! endl; elsecout 你猜對(duì)了! endl;while(n != m);程序運(yùn)行輸出:請(qǐng)猜這個(gè)數(shù)的值為多少? (0100):50 你猜的值太大了!請(qǐng)猜這個(gè)數(shù)的值為多少? (0100):25 你猜的值太大了!請(qǐng)猜這個(gè)數(shù)的值為多少? (0100):10 你猜的值太小了!請(qǐng)猜這個(gè)數(shù)的值為多少? (0100):15 你猜的值太小了!請(qǐng)猜

14、這個(gè)數(shù)的值為多少? (0100):18 你猜對(duì)了!第三章函數(shù)3-2 觀察下面程序的運(yùn)行輸出,與你設(shè)想的有何不同?仔細(xì)體會(huì)引用的用法。源程序:#include int main()int intOne;int &rSomeRef = intOne;intOne = 5;cout intOne:tt intOne endl; cout rSomeRef:t rSomeRef endl;int intTwo = 8;rSomeRef = intTwo; / not what you think!cout nintOne:tt intOne endl;cout intTwo:tt intTwo end

15、l;cout rSomeRef:t rSomeRef endl;return 0;程序運(yùn)行輸出:intOne: 5rSomeRef: 5intOne: 8intTwo: 8rSomeRef: 83-7 編寫函數(shù),參數(shù)為兩個(gè)unsignedshort int 型數(shù),返回值為第一個(gè)參數(shù)除以第二個(gè)參數(shù)的結(jié)果,數(shù)據(jù)類型為shortint;如果第二個(gè)參數(shù)為0,則返回值為 -1。在主程序中實(shí)現(xiàn)輸入輸出。解:源程序:#include short int Divider(unsigned short int a, unsigned short int b)if (b = 0)return -1;elseret

16、urn a/b;typedef unsigned short int USHORT; typedef unsigned long int ULONG; int main()USHORT one, two;short int answer;cout one;cout two;answer = Divider(one, two); if (answer -1)cout Answer: answer; elsecout Error, cant divide by zero!;return 0;程序運(yùn)行輸出:Enter two numbers.Number one:8Number two:2Answe

17、r: 43-8 編寫函數(shù)把華氏溫度轉(zhuǎn)換為攝氏溫度,公式為: C = (F - 32) * 5/9; 在主程序中提示用戶輸入一個(gè)華氏溫度,轉(zhuǎn)化后輸出相應(yīng)的攝氏溫度。解:源程序見 實(shí)驗(yàn)指導(dǎo) 部分實(shí)驗(yàn)三3-10 編寫函數(shù)求兩個(gè)整數(shù)的最大公約數(shù)和最小公倍數(shù)。源程序:#include #include int fn1(int i,int j); /求最大公約數(shù)的函數(shù)void main()int i,j,x,y;cout i ;cout j ;x = fn1(i,j);y = i * j / x;cout i 和 j 的最大公約數(shù)是: x endl;cout i 和 j 的最小公倍數(shù)是: y endl;i

18、nt fn1(int i, int j)int temp;if (i j)temp = i;i = j;j = i;while(j != 0)temp = i % j;i = j;j = temp;return i;程序運(yùn)行輸出:請(qǐng)輸入一個(gè)正整數(shù):120請(qǐng)輸入另一個(gè)正整數(shù):72120 和 72 的最大公約數(shù)是:24120 和 72 的最小公倍數(shù)是: 360 3-12 在主程序中提示輸入整數(shù) n,編寫函數(shù)用遞歸的方法求 1 + 2 + + n 的值。解:#include #include int fn1(int i);void main()int i;cout i ;cout 從 1 累加到 i

19、 的和為: fn1(i) 2;fib(1) = fib(2) = 1; 觀察遞歸調(diào)用的過(guò)程。解:源程序見 實(shí)驗(yàn)指導(dǎo) 部分實(shí)驗(yàn)三3-15 用遞歸的方法編寫函數(shù)求 n 階勒讓德多項(xiàng)式的值,在主程序中實(shí)現(xiàn)輸入、輸出;解:#include float p(int n, int x);void main()int n,x;cout n;cout x;cout n = n endl;cout x = x endl;cout P n ( x ) = p(n,x) endl;float p(int n, int x)if (n = 0)return 1;else if (n = 1)return x;else

20、return (2*n-1)*x*p(n-1,x) - (n-1)*p(n-2,x)/n ;程序運(yùn)行輸出:請(qǐng)輸入正整數(shù)n:1請(qǐng)輸入正整數(shù)x:2n = 1x = 2P1(2) = 2請(qǐng)輸入正整數(shù)n: 3請(qǐng)輸入正整數(shù)x:4n = 3x = 4P3(4) = 154第四章類4-9 設(shè)計(jì)并測(cè)試一個(gè)名為 Rectangle 的矩形類,其屬性為矩形的左下角與右上角兩個(gè)點(diǎn)的坐標(biāo),能計(jì)算矩形的面積。源程序:#include class Rectanglepublic:Rectangle (int top, int left, int bottom, int right);Rectangle () int Ge

21、tTop() const return itsTop; int GetLeft() const return itsLeft; int GetBottom() const return itsBottom; int GetRight() const return itsRight; void SetTop(int top) itsTop = top; void SetLeft (int left) itsLeft = left; void SetBottom (int bottom) itsBottom = bottom; void SetRight (int right) itsRight

22、= right; int GetArea() const;private:int itsTop;int itsLeft;int itsBottom;int itsRight;Rectangle:Rectangle(int top, int left, int bottom, int right)itsTop = top;itsLeft = left;itsBottom = bottom;itsRight = right;int Rectangle:GetArea() constint Width = itsRight-itsLeft;int Height = itsTop - itsBotto

23、m; return (Width * Height);int main()Rectangle MyRectangle (100, 20, 50, 80 );enum徑 Radius,成員函數(shù) GetArea(),計(jì)算圓int Area = MyRectangle.GetArea();character,的面積,構(gòu)造一個(gè)Circle 的對(duì)象進(jìn)行測(cè)cout Area: Area n;integer,試。return 0;floating_point解: vartype;#include 程序運(yùn)行輸出:unionclass CircleArea: 3000Upper Left X Coordinat

24、e: 20char c;public:4-11 定義一個(gè)矩形類,有長(zhǎng)、寬兩個(gè)屬int i;Circle(float radius) Radius = radius;性,有成員函數(shù)計(jì)算矩形的面積float f;Circle()解:;float GetArea() return 3.14 * Radius *#include public:Radius; class Rectangledatatype(char ch) private:vartype = character;float Radius;public:c = ch;Rectangle(float len, float width)vo

25、id main()datatype(int ii) Length = len;vartype = integer;float radius;Width = width;i = ii;cout radius;Rectangle();datatype(float ff) Circle p(radius);float GetArea() return Length * Width; vartype = floating_point;cout 半徑為 radius 的圓的面float GetLength() return Length; f = ff;積為: p.GetArea ()float Get

26、Width() return Width; endl;private:void print();float Length;程序運(yùn)行輸出:float Width;void datatype:print() 請(qǐng)輸入圓的半徑: 5;switch (vartype) 半徑為 5 的圓的面積為: 78.5void main()case character:4-14 定義一個(gè) tree 類,有成員 ages,成cout 字符型 : c endl;員 函 數(shù) grow(intyears) 對(duì) ages 加 上float length, width;break;years,age()顯示 tree 對(duì)象的 a

27、ges 的值。cout length;cout 整型 : i endl;#include cout width;case floating_point:int ages;Rectangle r(length, width);cout 浮點(diǎn)型 : f endl;public:cout 長(zhǎng)為 length 寬為 break;Tree(int n=0);width 的矩形的面積為: Tree(); r.GetArea () endl;void grow(int years);void main() void age();程序運(yùn)行輸出:datatype A(c), B(12), C(1.44F);請(qǐng)輸

28、入矩形的長(zhǎng)度: 5A.print();Tree:Tree(int n) 請(qǐng)輸入矩形的寬度: 4B.print();ages = n;長(zhǎng)為 5 寬為 4 的矩形的面積為: 20C.print();4-12 定義一個(gè) 數(shù)據(jù)類型 datatype 類,Tree:Tree() 能處理包含字符型、整型、浮點(diǎn)型三種程序運(yùn)行輸出:age();類型的數(shù)據(jù),給出其構(gòu)造函數(shù)。字符型 : c解:整型:12void Tree:grow(int years) #include 浮點(diǎn)型 : 1.44ages += years;class datatype4-13 定義一個(gè) Circle 類,有數(shù)據(jù)成員半void Tree

29、:age() cout 這棵樹的年齡為 ages endl;void main()Tree t(12);t.age();t.grow(4);程序運(yùn)行輸出:這棵樹的年齡為12這棵樹的年齡為16第 五章C+程序的基本結(jié)構(gòu)5-12 在函數(shù) fn1()中定義一個(gè)靜態(tài)變量n, fn1()中對(duì) n 的值加 1,在主函數(shù)中,調(diào)用 fn1() 十次,顯示 n 的值。解:#include void fn1()static int n = 0;n+;cout n 的值為 n endl;void main()for(int i = 0; i i =+10; void Y:g(X* x) x-i +; class Z

30、 public:void f(X* x) x-i += 5; ;#endif / MY_X_Y_Z_H程序運(yùn)行輸出:無(wú)5-14 定義 Boat 與 Car 兩個(gè)類,二者都有weight屬性,定義二者的一個(gè)友元函數(shù)totalWeight() ,計(jì)算二者的重量和。解:源程序:#include class Boat;class Carprivate:int weight;public:Car(int j)weight = j;friend int totalWeight(Car &aCar, Boat &aBoat);class Boatprivate:int weight;public:Boat(

31、int j)weight = j;friend int totalWeight(Car &aCar, Boat &aBoat);int totalWeight(Car &aCar , Boat &aBoat)return aCar.weight + aBoat.weight;void main()Car c1(4);Boat b1(5);cout totalWeight(c1 , b1) endl;程序運(yùn)行輸出:9第 六 章數(shù)組、指針與字符串6-1 數(shù)組 A10515 一共有多少個(gè)元素?解:10 515 = 750 個(gè)元素1-2 在數(shù)組 A20 中第一個(gè)元素和最后一個(gè)元素是哪一個(gè)?解:第一個(gè)元

32、素是A0 ,最后一個(gè)元素是A19 。6-3 用一條語(yǔ)句定義一個(gè)有五個(gè)元素的整型數(shù)組,并依次賦予15 的初值。解:源程序:int IntegerArray5 = 1 , 2, 3, 4, 5 ; 或: int IntegerArray = 1 , 2, 3, 4,5 ;6-7 什么叫做指針?指針中儲(chǔ)存的地址和這個(gè)地址中的值有何區(qū)別?解:指針是一種數(shù)據(jù)類型,具有指針類型的變量稱為指針變量。指針變量存放的是另外一個(gè)對(duì)象的地址,這個(gè)地址中的值就是另一個(gè)對(duì)象的內(nèi)容。6-10 定義一個(gè)有五個(gè)元素的整型數(shù)組,在程序中提示用戶輸入元素值,最后再在屏幕上顯示出來(lái)。解:源程序:#include int main(

33、)int myArray5;int i;for ( i=0; i5; i+)cout Value for myArray i myArrayi;for (i = 0; i5; i+)cout i : myArrayi n;return 0;程序運(yùn)行輸出:Value for myArray0: 2Value for myArray1: 5Value for myArray2: 7Value for myArray3: 8Value for myArray4: 30: 21: 52: 73: 84: 36-11 引用和指針有何區(qū)別?何時(shí)只能使用指針而不能使用引用?解:引用是一個(gè)別名, 不能為 NU

34、LL 值,不能被重新分配;指針是一個(gè)存放地址的變量。當(dāng)需要對(duì)變量重新賦以另外的地址或賦值為 NULL 時(shí)只能使用指針。6-12 聲明下列指針: float 類型變量的指針 pFloat ,char 類型的指針 pString 和struct customer 型的指針 prec。解:float *pfloat;char *pString;struct customer *prec;6-13 給定 float 類型的指針fp ,寫出顯示fp 所指向的值的輸出流語(yǔ)句。解:cout Value = *fp;6-16 定義一個(gè)整型變量a,一個(gè)整型指針 p,一個(gè)引用r ,通過(guò) p 把 a 的值改為10,

35、通過(guò) r 把 a 的值改為 5 解:void main()int a;int *p = &a;int &r = a;*p = 10;r = 5;6-21 編寫一個(gè)函數(shù),統(tǒng)計(jì)一個(gè)英文句子中字母的個(gè)數(shù),在主程序中實(shí)現(xiàn)輸入、輸出。解:源程序:#include #include int count(char *str)int i,num=0;for (i=0; stri; i+)if ( (stri=a & stri=A& stri=Z) ) num+;return num;void main()char text100;cout 輸入一個(gè)英語(yǔ)句子: endl; gets(text);cout 這個(gè)句

36、子里有 count(text) 個(gè)字母。 endl;程序運(yùn)行輸出:輸入一個(gè)英語(yǔ)句子:It is very interesting!這個(gè)句子里有19 個(gè)字母。6-22 編寫函數(shù)int index(char *s ,char*t) ,返回字符串 t 在字符串 s 中出現(xiàn)的最左邊的位置, 如果在 s 中沒有與 t 匹配的子串,就返回-1。解:源程序:#include int index( char *s, char *t)int i,j,k;for(i = 0; si != 0; i+)for(j = i, k = 0; tk != 0 & sj = tk; j+, k+);if (tk =0)re

37、turn i;return -1;void main()int n;char str120,str220;cout str1;cout str2;n = index(str1,str2);if (n 0)cout str2 在 str1 中左起第 n+1 個(gè)位置。 endl; elsecout str2 不在 str1 中。 endl;程序運(yùn)行輸出:輸入一個(gè)英語(yǔ)單詞:abcdefgh輸入另一個(gè)英語(yǔ)單詞:dede 在 abcdefghijk 中左起第 4 個(gè)位置。第 七 章繼承與派生7-7 定義一個(gè)基類,構(gòu)造其派生類,在構(gòu)造函數(shù)中輸出提示信息,觀察構(gòu)造函數(shù)的執(zhí)行情況。解:#include cla

38、ss BaseClasspublic:BaseClass();BaseClass:BaseClass()cout 構(gòu)造基類對(duì)象 ! endl;class DerivedClass : public BaseClasspublic:DerivedClass();DerivedClass:DerivedClass()cout 構(gòu)造派生類對(duì)象! endl;void main()Document a(Document1);class box : public objectBook b(Book1,100);DerivedClass d;b.PrintNameOf();private:int Height,Width;程序運(yùn)行輸出:程序運(yùn)行輸出:public:構(gòu)造基類對(duì)象 !Name of book: Book1box()構(gòu)造派生類對(duì)象 !7-9 定義基類 Base,有兩個(gè)共有成員函7-8 定義一個(gè) Document 類,有 name 成數(shù) fn1() 、fn2(),私有派生出Deriv

溫馨提示

  • 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ù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(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ì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論