C#基礎(chǔ)編程設(shè)計(jì)實(shí)驗(yàn)報(bào)告_第1頁(yè)
C#基礎(chǔ)編程設(shè)計(jì)實(shí)驗(yàn)報(bào)告_第2頁(yè)
C#基礎(chǔ)編程設(shè)計(jì)實(shí)驗(yàn)報(bào)告_第3頁(yè)
C#基礎(chǔ)編程設(shè)計(jì)實(shí)驗(yàn)報(bào)告_第4頁(yè)
已閱讀5頁(yè),還剩50頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

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

文檔簡(jiǎn)介

1、c#基礎(chǔ)編程設(shè)計(jì)實(shí)驗(yàn)報(bào)告 c# 基礎(chǔ)編程 設(shè)計(jì)實(shí)驗(yàn)報(bào)告 一、實(shí)驗(yàn)?zāi)康?1、熟悉 visual studio .net 開(kāi)發(fā)環(huán)境。 2、掌握 c#應(yīng)用程序的基本操作過(guò)程。 3、掌握 c#的數(shù)據(jù)類(lèi)型,運(yùn)算符以及表達(dá)式的使用。 4、掌握分支和循環(huán)語(yǔ)句的使用方法。 5、掌握一維數(shù)組,二維數(shù)組及數(shù)組型數(shù)組的使用。 二、實(shí)驗(yàn)要求 (1)編寫(xiě)程序要規(guī)范、正確,上機(jī)調(diào)試過(guò)程和結(jié)果要有記錄 (2)做完實(shí)驗(yàn)后給出本實(shí)驗(yàn)的實(shí)驗(yàn)報(bào)告。 三、實(shí)驗(yàn)設(shè)備、環(huán)境 安裝有 visual studio .net 軟件。 四、實(shí)驗(yàn)步驟 1、分析題意。 2、根據(jù)題目要求,新建項(xiàng)目。 3、編寫(xiě)并輸入相關(guān)的程序代碼。 5、運(yùn)行與調(diào)試項(xiàng)目

2、。 6、保存項(xiàng)目。 五、實(shí)驗(yàn)內(nèi)容 1、編寫(xiě)一個(gè)簡(jiǎn)單的控制臺(tái)應(yīng)用程序,打印一行文字(如你的姓名)。 using system; using system.collections.generic; using system.linq; using system.text; namespace one.first class program static void main(string args) system.console.writeline(quot;我叫王蕾!quot;); 2、編寫(xiě)一個(gè)簡(jiǎn)單的 windows 應(yīng)用程序,在窗體 load 事件中書(shū)寫(xiě)代碼,標(biāo)簽中顯示你的姓名。 using s

3、ystem; using system.collections.generic; using system.componentmodel; using system.data; using system.drawing; using system.linq; using system.text; using system.windows.forms; namespace one.second public partial class form1 : form public form1() initializecomponent(); private void form1_load(object

4、 sender, eventargs e) this.text = quot;windows 程序quot; label lblshow = new label(); lblshow.location = new point(20, 30); lblshow.autosize = true; lblshow.text = quot;王蕾!quot; this.controls.add(lblshow); 3、編寫(xiě)一個(gè)一個(gè)程序,用來(lái)判斷輸入的是大寫(xiě)字母,小寫(xiě)字母,數(shù)字還是其他的字符。 using system; using system.collections.generic; using sy

5、stem.text; namespace one.third class program static void main(string args) console.writeline(quot;請(qǐng)輸入一個(gè)字符:quot;); char c = convert.tochar(console.readline(); if (cgt;="a"amp;amp;clt;="z")|(cgt;="a"amp;amp;clt;="z") console.writeline(quot;這是一個(gè)字母quot;); if (char

6、.isdigit(c) console .writeline(quot;這是一個(gè)數(shù)字quot;); 4、分別用 while,do-while,for 循環(huán)求 1 到 100 的和。 using system; using system.collections.generic; using system.text; namespace one.forth.one class program static void main(string args) int i = 1, sum = 0; while (i lt;= 100) sum = sum + i; i+; console.writelin

7、e(quot;1 到 100 的自然數(shù)之和為:quot; + sum); using system; using system.collections.generic; using system.text; namespace one.forth.two class program static void main(string args) int i = 1, sum = 0; do sum = sum + i; i+; while (i lt;= 100); console .writeline(quot;1 到 100 的自然數(shù)的和為:quot; + sum ); using syste

8、m; using system.collections.generic; using system.text; namespace one.forth.three class program static void main(string args) int i , sum = 0; for (i = 1; i lt;= 100; i+) sum = sum + i; console.writeline(quot;1 到 100 的自然數(shù)的和為:quot; + sum); 5、定義一個(gè)一維數(shù)組,用隨機(jī)數(shù)為此賦值,用 foreach 循環(huán)輸 出其中的內(nèi)容。 using system; using

9、 system.collections.generic; using system.linq; using system.text; namespace first.five class program static void main(string args) int a = 0,1,2,3,4; foreach (int i in a) console.writeline(ai); 6、實(shí)現(xiàn)二維數(shù)組的輸入和輸出。 using system; using system.collections.generic; using system.linq; using system.text; nam

10、espace first.six class program static void main(string args) int, a = new int2, 3 1, 2, 3 , 4, 5, 6 ; for (int i = 0; i lt; 2; i+) for (int j = 0; j lt; 3; j+) console.writeline(ai, j); 7、實(shí)現(xiàn)數(shù)組型數(shù)組的輸入和輸出。 using system; using system.collections.generic; using system.linq; using system.text; namespace f

11、irst.seven class program static void main(string args) int a = new int new int 1, 2, 3 , new int 4, 5, 6 ; for (int i = 0; i lt; a.length; i+) for (int j = 0; j lt; ai.length; j+) console.writeline(aij); 六、實(shí)驗(yàn)體會(huì)(遇到問(wèn)題及解決辦法,編程后的心得體會(huì)) 剛開(kāi)始編程的時(shí)候覺(jué)得無(wú)從下手,盡管我們已經(jīng)學(xué)了好幾種高級(jí)編程語(yǔ)言,但每個(gè)都有其獨(dú)特的地方,稍不留神就會(huì)混淆。 通過(guò)這次實(shí)驗(yàn),我體會(huì)到課后復(fù)

12、習(xí)鞏固的重要性。在編程的時(shí)候,很多內(nèi)容都不記得,需要去翻書(shū)。不得不說(shuō),實(shí)驗(yàn)是鞏固課程的好方法!本次實(shí)驗(yàn),我熟悉 visual studio .net 開(kāi)發(fā)環(huán)境;掌握了 c#應(yīng)用程序的基本操作過(guò)程;掌握了 c#的數(shù)據(jù)類(lèi)型,運(yùn)算符以及表達(dá)式的使用;掌握了分支和循環(huán)語(yǔ)句的使用方法以及一維數(shù)組,二維數(shù)組及數(shù)組型數(shù)組的使用。 實(shí)驗(yàn)項(xiàng)目名稱(chēng): 類(lèi)與對(duì)象 實(shí)驗(yàn)學(xué)時(shí): 6 同組學(xué)生姓名: 實(shí)驗(yàn)地點(diǎn): 1318 實(shí)驗(yàn)日期: 10 月 26 日-11 月 9 日 實(shí)驗(yàn)成績(jī): 批改教師: 批改時(shí)間: 實(shí)驗(yàn) 2 類(lèi)與對(duì)象 一、實(shí)驗(yàn)?zāi)康?、要?(1)掌握類(lèi)的定義和使用; (2)掌握類(lèi)的數(shù)據(jù)成員,屬性的定義和使用; (3

13、)掌握方法的定義,調(diào)用和重載以及方法參數(shù)的傳遞; (4)掌握構(gòu)造函數(shù)的定義和使用。 二、實(shí)驗(yàn)要求 (1)編寫(xiě)程序要規(guī)范、正確,上機(jī)調(diào)試過(guò)程和結(jié)果要有記錄; (2)做完實(shí)驗(yàn)后給出本實(shí)驗(yàn)的實(shí)驗(yàn)報(bào)告。 三、實(shí)驗(yàn)設(shè)備、環(huán)境 安裝有 visual studio .net 軟件。 四、實(shí)驗(yàn)步驟 1、分析題意; 2、根據(jù)題目要求,新建項(xiàng)目; 3、編寫(xiě)并輸入相關(guān)的程序代碼; 5、運(yùn)行與調(diào)試項(xiàng)目; 6、保存項(xiàng)目。 五、實(shí)驗(yàn)內(nèi)容 1、定義一個(gè)方法,實(shí)現(xiàn)兩個(gè)數(shù)的交換(分別把參數(shù)按值傳遞和按引用傳遞)。 using system; using system.collections.generic; using sys

14、tem.text; namespace second.one class program static void main(string args) swaper s = new swaper(); console.writeline(quot;輸入 x 的值:quot;); int a = convert.toint32(console.readline(); console.writeline(quot;輸入 y 的值:quot;); int b=convert.toint32(console.readline(); console.writeline(s.swap(a, b); cons

15、ole.writeline(s.swap(ref a,ref b); class swaper public string swap(int x, int y) int temp; temp = x; x = y; y = temp; return string.format(quot;按值傳參交換之后:x=0,y=1quot;,x,y); public string swap(ref int x, ref int y) int temp; temp = x; x = y; y = temp; return string.format(quot;按引用傳參交換之后:x=0,y=1quot;,

16、x, y); 2、定義一個(gè)方法,實(shí)現(xiàn)數(shù)組的排序。 using system; using system.collections.generic; using system.text; namespace second.two class program public class sort public void change(int a) console.writeline(quot;排序前,數(shù)組順序?yàn)椋簈uot;); show(a); int i, j, m; for (i = 0; i lt; 10; i+) m = ai; j = i - 1; /aj為數(shù)組前一個(gè)值 while (j g

17、t;= 0 amp;amp; m gt; aj)/判斷 i 下標(biāo)的數(shù)是否大于 j 下標(biāo)的數(shù) aj + 1 = aj;/如果 i 下標(biāo)大于j 把 j 往后移一個(gè)位 j-; aj+1 = m; /當(dāng)不大于 j 的時(shí)候就把 m的值放到 i 下標(biāo)下面 j+1 是為了下標(biāo)減到最前時(shí)考慮 -1 + 1 還是下標(biāo)的最前面 console.writeline(quot;排序后,數(shù)組順序?yàn)椋簈uot;); show(a); void show(int a) int i; for (i = 0; i lt; 10; i+) console.write(quot;0 quot;, ai); console.writ

18、eline(); static void main(string args) int a = 4, 7, 1, 2, 5, 8, 9, 10, 3, 6 ; sort s=new sort(); s.change(a); 3、定義一個(gè)學(xué)生類(lèi),把學(xué)生類(lèi)當(dāng)作對(duì)象來(lái)傳遞。 using system; using system.collections.generic; using system.linq; using system.text; namespace second.three class program public class student public void st() int a

19、 = 999; public class st public void aa(student s) console.writeline(s); static void main(string args) student s=new student(); st s1 = new st(); s1.aa(s); 4、定義一個(gè)方法,求兩個(gè)數(shù)的和和差,通過(guò)參數(shù)把這兩個(gè)值帶回。 using system; using system.collections.generic; using system.linq; using system.text; namespace second.four class

20、program public class sum public void ab(out int m, out int n,int a, int b) m = a + b; n = a - b; static void main(string args) sum s = new sum(); int a = 10; int b = 3; int m, n; s.ab(out m, out n, a, b); console.writeline(quot;0+1=2;0- 1=3quot;,a,b,m,n); 5、用構(gòu)造函數(shù)重載,實(shí)現(xiàn)矩形的面積,圓的面積,梯形的面積; using system;

21、using system.collections.generic; using system.linq; using system.text; namespace secong.five class program public class square public double area; public square() public square(double a) area = a * a * 3.14; public square(double a, double b) area = a * b; public square(double a, double b, double h)

22、 area = (a + b) / 2 * h; static void main(string args) double a, b, h,area; a = 2; b = 5; h = 3; square s = new square(a,b); console.writeline(quot;求矩形面積,長(zhǎng)為 a=0,寬為 b=1,面積 area=2quot;,a,b,s.area); square i = new square(a); console.writeline(quot;求圓形面積,半徑 a=0,面積 area=1quot;, a, i.area); square j = new

23、 square(a, b, h); console.writeline(quot;求梯形面積,上底為a=0,下底為 b=1,高為 h=2面積 area=3quot;, a, b,h, j.area); 6、設(shè)計(jì)一個(gè) windows 應(yīng)用程序,在該程序中定義一個(gè)學(xué)生類(lèi)和班級(jí)類(lèi),以處理每個(gè)學(xué)生的學(xué)號(hào),姓名,語(yǔ)文,數(shù)學(xué)和英語(yǔ)成績(jī),要求: 1)能查詢(xún)每個(gè)學(xué)生的總成績(jī)。 2)能顯示全班前三名的.。 3)能顯示單科成績(jī)最高分和不及格的學(xué)生.。 4)能統(tǒng)計(jì)全班學(xué)生的平均成績(jī)。 5)能顯示各科成績(jī)不同分?jǐn)?shù)段的學(xué)生人數(shù)的百分比。 student 類(lèi): using system; using system.col

24、lections.generic; using system.text; namespace test2_6 public class student public string stuno; public string name; public double chinese; public double math; public double english; public double sumscore get return chinese + math + english; studentlist 類(lèi): using system; using system.collections.gen

25、eric; using system.text; namespace test2_6 public class studentlist:student int snums; public student stu=new student50; public studentlist() snums = 0; public void addstu(student s) stusnums = s; snums+; public int searchstu(string name) int i; for (i = 0; i lt; snums; i+) if ( = name) bre

26、ak; if (i = snums) return -1; else return i; /給所有成績(jī)排序,用后面實(shí)現(xiàn)前三名的排名 public void prothree() for (int i = 0; i lt; snums; i+) int k = i; for (int j = i + 1; j lt; snums; j+) if (stuj.sumscore gt; stuk.sumscore) k = j; if (k != i) student temp; temp = stuk; stuk = stui; stui = temp; /顯示單科成績(jī)的最高分 public in

27、t highscore(int k) int p = 0; if (k = 0) for (int i = 1; i lt; snums; i+) if (stui.math gt; stup.math) p = i; else if (k = 1) for (int i = 1; i lt; snums; i+) if (stui.chinese gt; stup.chinese) p = i; else for (int i = 1; i lt; snums; i+) if (stui.chinese gt; stup.chinese) p = i; return p; /顯示不及格. p

28、ublic string buhgname(int k) string name=quot; quot; if (k = 0) for (int i = 0; i lt; snums; i+) if (stui.math lt; 60) name +=+quot;nquot; else if (k = 1) for (int i = 0; i lt; snums; i+) if (stui.chinese lt; 60) name += + quot;nquot; else for (int i = 0; i lt; snums; i+) if (stui

29、.english lt; 60) name += + quot;nquot; return name; public string gethl() string maxer = quot; quot;, loser = quot; quot; maxer += quot; 單 科 數(shù) 學(xué) 最 高 : quot; + stuhighscore(0).name + quot;nquot; maxer += quot; 單 科 語(yǔ) 文 最 高 : quot; + stuhighscore(1).name + quot;nquot; maxer += quot; 單 科 英 語(yǔ) 最

30、 高 : quot; + stuhighscore(2).name + quot;nquot; loser += quot;單科數(shù)學(xué)掛科.:quot; +buhgname(0) + quot;nquot; loser += quot;單科語(yǔ)文掛科.:quot; + buhgname(1) + quot;nquot; loser += quot;單科英語(yǔ)掛科.:quot; + buhgname(2) + quot;nquot; return maxer + quot;nquot; + loser; /全班的平均成績(jī) public string sumscore() double sum = 0;

31、 double avg=0; for (int i = 0; i lt; snums; i+) sum = sum + stui.sumscore; avg = sum / snums; return quot;班級(jí)總分平均分:quot;+avg; /各科成績(jī)不同分?jǐn)?shù)段的學(xué)生百分比 /英語(yǔ)成績(jī)各分?jǐn)?shù)段百分比 public string perc() double per1, per2, per3, per4, per5; double sumc1 = 0, sumc2 = 0, sumc3 = 0, sumc4 = 0, sumc5 = 0; for (int i = 0; i lt; snu

32、ms; i+) if (stui.chinese gt; 90) amp;amp; (stui.chinese lt;= 100) sumc1+; else if (80 lt;= stui.chinese) amp;amp; (stui.chinese lt; 90) sumc2+; else if(70lt;=stui.chinese)amp;amp; (stui.chinese lt; 80) sumc3+; else if(60lt;=stui.chinese)amp;amp;(stui.chinese lt; 70) sumc4+; else sumc5+; per1 = sumc1

33、 / snums; per2 = sumc2 / snums; per3 = sumc3 / snums; per4 = sumc4 / snums; per5 = sumc5 / snums; return quot; 語(yǔ) 文 成 績(jī) 百 分 比 :quot;+quot;nquot;+quot;90100:quot;+per1+quot; 8090:quot;+per2+quot; 8070:quot;+per3+quot; 7060:quot;+per4+quot; 60 以下的:quot;+per5; /數(shù)學(xué)成績(jī)各分?jǐn)?shù)段百分比 public string perm() double pe

34、r1, per2, per3, per4, per5; double sumc1 = 0, sumc2 = 0, sumc3 = 0, sumc4 = 0, sumc5 = 0; for (int i = 0; i lt; snums; i+) if (stui.mathgt; 90) amp;amp;(stui.math lt;= 100) sumc1+; else if (80 lt;= stui.math) amp;amp; (stui.math lt; 90) sumc2+; else if (70 lt;= stui.math) amp;amp; (stui.math lt; 80)

35、 sumc3+; else if (60 lt;= stui.math) amp;amp; (stui.math lt; 70) sumc4+; else sumc5+; per1 = sumc1 / snums; per2 = sumc2 / snums; per3 = sumc3 / snums; per4 = sumc4 / snums; per5 = sumc5 / snums; return string.format(quot;數(shù)學(xué)成績(jī)百分比:quot; + quot;nquot; + quot;90100:quot; + per1 + quot; 8090:quot; + per

36、2 + quot; 8070:quot; + per3 + quot; 7060:quot; + per4 + quot; 60 以下的:quot; + per5); /英語(yǔ)成績(jī)各分?jǐn)?shù)段百分比 public string pere() double per1, per2, per3, per4, per5; double sumc1 = 0, sumc2 = 0, sumc3 = 0, sumc4 = 0, sumc5 = 0; for (int i = 0; i lt; snums; i+) if (stui.english gt; 90) amp;amp; (stui.english lt

37、;= 100) sumc1+; else if (80 lt;= stui.english) amp;amp; (stui.english lt; 90) sumc2+; else if (70 lt;= stui.english) amp;amp; (stui.english lt; 80) sumc3+; else if (60 lt;= stui.english) amp;amp; (stui.english lt; 70) sumc4+; else sumc5+; per1 = sumc1 / snums; per2 = sumc2 / snums; per3 = sumc3 / sn

38、ums; per4 = sumc4 / snums; per5 = sumc5 / snums; return string.format(quot;數(shù)學(xué)成績(jī)百分比:quot; + quot;nquot; + quot;90100:quot; + per1 + quot; 8090:quot; + per2 + quot; 8070:quot; + per3 + quot; 7060:quot; + per4 + quot; 60 以下的:quot; + per5); from 窗體代碼: using system; using system.collections.generic; usin

39、g system.componentmodel; using system.data; using system.drawing; using system.text; using system.windows.forms; namespace test2_6 public partial class form1 : form public form1() initializecomponent(); public studentlist sl = new studentlist(); private void btnadd_click(object sender, eventargs e)

40、student s = new student(); s.stuno = txtstuno.text; = txtname.text; s.chinese = convert.todouble(txtchina.text); s.math = convert.todouble(txtmath.text); s.english = convert.todouble(txteng.text); sl.addstu(s); messagebox.show(quot;添加成功quot;); private void btnsearch_click(object sender, event

41、args e) int pos = sl.searchstu(this.textbox1.text); if (pos != -1) label7.text = this.textbox1.text + quot;的總成績(jī):quot; + sl.stupos.sumscore; else messagebox.show(quot;不存在這個(gè)人!quot;); private void btnfinish_click(object sender, eventargs e) label7.text = quot;前 3 名:quot;+quot;nquot; for (int i = 0; i l

42、t; 3; i+) sl.prothree(); label7.text+= +quot;nquot; label7.text += sl.gethl()+quot;nquot; label7.text += convert.tostring(sl.sumscore()+quot;nquot; label7.text += sl.perc()+quot;nquot; label7.text += sl.perm()+quot;nquot; label7.text += sl.pere()+quot;nquot; 六、實(shí)驗(yàn)體會(huì)(遇到問(wèn)題及解決辦法,編程后的心得體會(huì)) 通過(guò)

43、本次實(shí)驗(yàn),我掌握了類(lèi)的定義與使用;掌握了類(lèi)的數(shù)據(jù)成員,屬性的定義和使用;掌握了方法的定義,調(diào)用和重載以及方法參數(shù)的傳遞以及構(gòu)造函數(shù)的定義和使用。值得注意的是:本次實(shí)驗(yàn)中 return的使用以及所在的位置,類(lèi)型轉(zhuǎn)換時(shí)也經(jīng)常用到 實(shí)驗(yàn)項(xiàng)目名稱(chēng): 繼承與多態(tài) 實(shí)驗(yàn)學(xué)時(shí): 6 同組學(xué)生姓名: 實(shí)驗(yàn)地點(diǎn): 1318 實(shí)驗(yàn)日期: 11 月 16 日-11 月 30 日 實(shí)驗(yàn)成績(jī): 批改教師: 批改時(shí)間: 實(shí)驗(yàn) 3 繼承與多態(tài) 一、實(shí)驗(yàn)?zāi)康?、要?(1)掌握類(lèi)的繼承性與多態(tài)性; (2)掌握虛方法的定義以及如何使用虛方法實(shí)現(xiàn)多態(tài); (3)掌握抽象類(lèi)的定義以及如何使用抽象方法實(shí)現(xiàn)多態(tài); 二、實(shí)驗(yàn)要求 (1)編寫(xiě)

44、程序要規(guī)范、正確,上機(jī)調(diào)試過(guò)程和結(jié)果要有記錄; (2)做完實(shí)驗(yàn)后給出本實(shí)驗(yàn)的實(shí)驗(yàn)報(bào)告。 三、實(shí)驗(yàn)設(shè)備、環(huán)境 安裝有 visual studio .net 軟件。 四、實(shí)驗(yàn)步驟 1、分析題意; 2、根據(jù)題目要求,新建項(xiàng)目; 3、編寫(xiě)并輸入相關(guān)的程序代碼; 5、運(yùn)行與調(diào)試項(xiàng)目; 6、保存項(xiàng)目。 五 、實(shí)驗(yàn)內(nèi)容 1、設(shè)計(jì)一個(gè) windows 應(yīng)用程序,在該程序中首先構(gòu)造一個(gè)學(xué)生基本類(lèi),再分別構(gòu)造小學(xué)生、中學(xué)生、大學(xué)生派生類(lèi),當(dāng)輸入相關(guān)數(shù)據(jù),單擊不用的按鈕時(shí),將分別創(chuàng)建不同的學(xué)生類(lèi)對(duì)象,并輸出當(dāng)前學(xué)生的總?cè)藬?shù),該學(xué)生的姓名,學(xué)生類(lèi)型,平均成績(jī)。 student 類(lèi): using system; using system.collections.generic; using system.text; namespace test3_1 public abstract class student protected string name; protected int age; public stati

溫馨提示

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

最新文檔

評(píng)論

0/150

提交評(píng)論