java實(shí)用教程第版答案_第1頁
java實(shí)用教程第版答案_第2頁
java實(shí)用教程第版答案_第3頁
已閱讀5頁,還剩29頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

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

文檔簡介

1、JAVA2 實(shí) 用 教 程習(xí)題解習(xí)題一(第 1 章)一、問答題1 James Gosling2 需 3 個(gè)步驟:1) 用文本編輯器編寫源文件。2) 使用 javac 編譯源文件 , 得到字節(jié)碼文件。3) 使用解釋器運(yùn)行程序。3 由類所構(gòu)成,應(yīng)用程序必須有一個(gè)類含有public static void main(String args) 方法,含有該方法的類稱為應(yīng)用程序的主類。不一定,但最多有一個(gè) public 類。4 set classpath=D:jdkjrelibrt.jar;.;5. java 和 class6. java Bird7. 獨(dú)行風(fēng)格(大括號(hào)獨(dú)占行)和行尾風(fēng)格(左大擴(kuò)號(hào)在上一

2、行行尾,右大括號(hào)獨(dú)占行)二、選擇題1 . Bo 2. D。三、閱讀程序1 .(a) Person.java °(b)兩個(gè)字節(jié)碼,分別是Person.class 和 Xiti.class。(c)得到"NoSuchMethodError ”得到“ NoClassDefFoundError: Xiti/class ”,得到“您好,很高興認(rèn)識(shí)您 nice to meet you ” 習(xí)題二(第 2 章)一、問答題1. 用來標(biāo)識(shí)類名、變量名、方法名、類型名、數(shù)組名、文件名的有效字符序列稱為標(biāo)識(shí)符。標(biāo)識(shí)符由字母、下劃線、美元符號(hào)和數(shù)字組成,第一個(gè)字符不能是數(shù)字。false 不是標(biāo)識(shí)符。

3、2. 關(guān)鍵字就是 Java 語言中已經(jīng)被賦予特定意義的一些單詞,不可以把關(guān)鍵字作為名字來用。不是關(guān)鍵字。class implements interface enum extends abstract 。3. boolean , char, byte, short, int, long, float , double。4. float常量必須用F或f為后綴。double常量用D或d為后綴,但允許省略后綴。5. 一維數(shù)組名 .length 。二維數(shù)組名 .length 。二、選擇題1 . Co 2. ADFo3.Bo4.BEo5.【代碼2】 【代碼3】【代碼4】【代碼5】 o6.Bo三、閱讀或調(diào)

4、試程序1 屬于操作題,解答略。2 屬于操作題,解答略。3 屬于操作題,解答略。4 .【代碼1】:4?!敬a2】:b0=1 o5 .【代碼1】:40?!敬a2】:7四、編寫程序1. public class E public static void main(String args) 你');我');他');2. public class E public static void main (String args ) char cStart=' a ',cEnd=' 3 'for(char c=cStart;c<=cEnd;c+)習(xí)

5、題三(第 3 章)一、問答題1boolean2不可以3boolean4.不是必須的5結(jié)束 while 語句的執(zhí)行6可以二、選擇題1A。 2 C。 3 C。三、閱讀程序1你,蘋,甜2Jeep 好好3x=-5,y=-1四、編程序題1public class Xiti1 public static void main(String args) double sum=0,a=1;int i=1;while(i<=10) sum=sum+a;i+;a=a*i;2public class Xiti2 public static void main(String args) int i,j;for(j

6、=2;j<=100;j+) for(i=2;i<=j/2;i+) if(j%i=0)break;if(i>j/2) 3class Xiti3 public static void main(String args) double sum=0,a=1,i=1; do sum=sum+a; i+; a=(1.0/i)*a;while(i<=20); for(sum=0,i=1,a=1;i<=20;i+) a=a*(1.0/i); sum=sum+a;4 public class Xiti4 public static void main(String args) in

7、t sum=0,i,j; for(i=1;i<=1000;i+) for(j=1,sum=0;j<i;j+) if(i%j=0) sum=sum+j;if(sum=i)5 public class Xiti5 public static void main(String args) int m=8,item=m,i=1; long sum=0; for(i=1,sum=0,item=m;i<=10;i+) sum=sum+item; item=item*10+m;6 public class Xiti6 public static void main(String args)

8、 int n=1; long sum=0; while(true) sum=sum+n; n+; if(sum>=8888) break; 習(xí)題四(第 4 章)一、問答題1. 封裝、繼承和多態(tài)。2 個(gè)單詞開始的其它單詞的首字2當(dāng)類名由幾個(gè)單詞復(fù)合而成時(shí),每個(gè)單詞的首字母使用大寫。3名字的首單詞的首字母使用小寫,如果變量的名字由多個(gè)單詞組成,從第 母使用大寫。4屬性5 行為6 用類創(chuàng)建對(duì)象時(shí)。沒有類型7 用類創(chuàng)建對(duì)象時(shí)。8一個(gè)類中可以有多個(gè)方法具有相同的名字,但這些方法的參數(shù)必須不同,即或者是參數(shù)的個(gè)數(shù)不同,或者 是參數(shù)的類型不同??梢?。9可以 。不可以。10不可以。11 一個(gè)類通過使用

9、new 運(yùn)算符可以創(chuàng)建多個(gè)不同的對(duì)象,不同的對(duì)象的實(shí)例變量將被分配不同的內(nèi)存空 間。所有對(duì)象的類變量都分配給相同的一處內(nèi)存,對(duì)象共享類變量。12代表調(diào)用當(dāng)前方法的對(duì)象。不可以。二、選擇題1B。 2 D。 3Do 4 . Do 5.CDo 6 【代碼 1】【代碼 4】o 7【代碼 4】三、閱讀程序1【代碼 1】:1 ,【代碼 2】: 121 ,【代碼 3】: 121 o2sum=-100。3.27。4【代碼 1】 :100,【代碼 2】: 20.0 o5.上機(jī)實(shí)習(xí)題目,解答略。6.上機(jī)實(shí)習(xí)題目,解答略。四、編程題CPU.java public class CPU int speed; int g

10、etSpeed() return speed;public void setSpeed(int speed) this.speed = speed; HardDisk.java public class HardDisk int amount; int getAmount() return amount;public void setAmount(int amount) this.amount = amount; PC.java public class PC CPU cpu; HardDisk HD;void setCPU(CPU cpu) this.cpu = cpu;void setHa

11、rdDisk(HardDisk HD) this.HD = HD;void show()Test.javapublic class Test public static void main(String args) CPU cpu = new CPU();HardDisk HD=new HardDisk();cpu.setSpeed(2200);HD.setAmount(200);PC pc =new PC();pc.setCPU(cpu);pc.setHardDisk(HD);pc.show();習(xí)題五(第 5 章)一、問答題1不可以。2是。3不繼承。4聲明與父類同名的成員變量。5子類重寫的

12、方法類型和父類的方法的類型一致或者是父類的方法的類型的子類型,重寫的方法的名字、參 數(shù)個(gè)數(shù)、參數(shù)的類型和父類的方法完全相同。重寫方法的目的是隱藏繼承的方法,子類通過方法的重寫可以 把父類的狀態(tài)和行為改變?yōu)樽陨淼臓顟B(tài)和行為。6不可以。7 Abstract 類。8上轉(zhuǎn)型對(duì)象不能操作子類新增的成員變量,不能調(diào)用子類新增的方法。上轉(zhuǎn)型對(duì)象可以訪問子類繼承或隱 藏的成員變量,可以調(diào)用子類繼承的方法或子類重寫的實(shí)例方法。9通過重寫方法。10面向抽象編程目的是為了應(yīng)對(duì)用戶需求的變化,核心是讓類中每種可能的變化對(duì)應(yīng)地交給抽象類的一個(gè) 子類類去負(fù)責(zé),從而讓該類的設(shè)計(jì)者不去關(guān)心具體實(shí)現(xiàn)。二、選擇題1Co 2.Do

13、 3.CDo 4. Do 5. Bo 6. Bo 7. Do 8. Bo 9. Ao三、閱讀程序1【 代碼1】:15.0 o【代碼2】:8.0o2【 代碼1】:11o【代碼2】:11o3【 代碼1】:98.0 o【代碼2】: 12o 【 代碼 3】: 98.0o【代碼 4】: 94【 代碼1】:120 o【代碼2】:120o 【代碼 3】:-100o四、編程題Animal.javapublic abstract class Animal public abstract void cry();public abstract String getAnimalName();Simulator.jav

14、apublic class Simulator public void playSound(Animal animal) animal.cry();Dog.javapublic class Dog extends Animal public void cry() public String getAnimalName() return " 狗 "Cat.javapublic class Cat extends Animal public void cry() public String getAnimalName() return " 貓 "Applic

15、ation.javapublic class Example5_13 public static void main(String args) Simulator simulator = new Simulator();simulator.playSound(new Dog();simulator.playSound(new Cat();習(xí)題六(第 6 章)一、問答題1不能。2不能。3可以把實(shí)現(xiàn)某一接口的類創(chuàng)建的對(duì)象的引用賦給該接口聲明的接口變量中。那么該接口變量就可以調(diào)用被 類實(shí)現(xiàn)的接口中的方法。4不可以。5可以。二、選擇題1 . Do 2. AB。3. Bo三、閱讀程序1 .【代碼1】:1

16、5.0 o【代碼2】:8o2 .【代碼1】:18o【代碼2】:15o四、編程題Animal.javapublic interface Animal public abstract void cry(); public abstract String getAnimalName();Simulator.javapublic class Simulator public void playSound(Animal animal) animal.cry();Dog.javapublic class Dog implements Animal public void cry() public Stri

17、ng getAnimalName() return " 狗 "Cat.javapublic class Cat implements Animal public void cry() public String getAnimalName() return " 貓 "Application.javapublic class Example5_13 public static void main(String args) Simulator simulator = new Simulator(); simulator.playSound(new Dog()

18、; simulator.playSound(new Cat();習(xí)題七(第 7 章)一、問答題1 有效。2 .可以。3不可以。4一定是。二、選擇題1 . Co 2. Co三、閱讀程序1 . 大家好,祝工作順利!2 . p是接口變量。3 你好 fine thanks o4 .屬于上機(jī)實(shí)習(xí)程序,解答略。四、編程題public class E public static void main (String args )Scanner reader = new Scanner(System.in); double sum = 0;int m = 0; while(reader.hasNextDoubl

19、e() double x = reader.nextDouble(); assert x< 100:"數(shù)據(jù)不合理 " m = m+1; sum = sum+x;習(xí)題八(第 8 章)一、問答題1 .不是。"hello"是。24和 3o3 false 和 true 。4負(fù)數(shù)。5是 true 。63 和 -1 。7會(huì)發(fā)生 NumberFormatException異常。二、選擇題1A。 2 C。3 B。 4 D。 5 C。三、閱讀程序1【 代碼】:蘋果。2【 代碼】:Love:Game 。3【 代碼 1 】: 15。 【 代碼 2】:abc 我們。4【

20、代碼】:13579 。5【 代碼】:9javaHello 。6屬于上機(jī)實(shí)習(xí)程序,解答略。7屬于上機(jī)實(shí)習(xí)程序,解答略。四、編程題1 public class E public static void main (String args ) String s1,s2,t1="ABCDabcd" s1=t1.toUpperCase();s2=t1.toLowerCase();String s3=s1.concat(s2);2. public class E public static void main (String args ) String s="ABCDabcd

21、"char cStart=s.charAt(0);char cEnd = s.charAt(s.length()-1);3.public class E public static void main (String args ) int year1,month1,day1,year2,month2,day2;try year1=Integer.parseInt(args0);month1=Integer.parseInt(args1); day1=Integer.parseInt(args2);year2=Integer.parseInt(args3); month2=Intege

22、r.parseInt(args4);day2=Integer.parseInt(args5);catch(NumberFormatException e) year1=2012; month1=0; day1=1; year2=2018; month2=0; day2=1;Calendar calendar=Calendar.getInstance(); calendar.set(year1,month1-1,day1);long timeYear1=calendar.getTimeInMillis(); calendar.set(year2,month2-1,day2);long timeY

23、ear2=calendar.getTimeInMillis();long 相隔天數(shù) =Math.abs(timeYear1-timeYear2)/(1000*60*60*24);year2+"年"+month2+"月"+day2+"日相隔"+相隔天數(shù) +"天"); 4.public class E public static void main (String args ) double a=0,b=0,c=0;a=12;b=24; c=Math.asin(0.56); c=Math.cos(3.14); c=Ma

24、th.exp(1); c=Math.log(8);5 public class E public static void main (String args ) String str = "ab123you 你是誰? "String regex = "D+"str = str.replaceAll(regex,"");6 public class E public static void main(String args) String cost = "數(shù)學(xué) 87 分,物理 76 分,英語 96 分 "Scanne

25、r scanner = new Scanner(cost);double sum=0;int count =0; while(scanner.hasNext()try double score = scanner.nextDouble(); count+; sum = sum+score;catch(InputMismatchException exp) String t = scanner.next();習(xí)題九(第 9 章)一、問答題1 Frame 容器的默認(rèn)布局是BorderLayout 布局。2不可以。3 ActionEvent 。4 DocumentEvent 。55 個(gè)。6 Mous

26、eMotionListener 。二、選擇題1 . Co 2. A。3. A。4. Do 5. C。三、編程題1 public class E public static void main(String args) Computer fr=new Computer();class Computer extends JFrame implements DocumentListener JTextArea text1,text2;int count=1;double sum=0,aver=0;Computer() setLayout(new FlowLayout();text1=new JTex

27、tArea(6,20);text2=new JTextArea(6,20);add(new JScrollPane(text1);add(new JScrollPane(text2);text2.setEditable(false);(text1.getDocument().addDocumentListener(this);setSize(300,320);setVisible(true);validate();setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);public void changedUpdate(DocumentEvent e

28、) String s=text1.getText();sum=0;aver=0;for(int i=0;i<a.length;i+) try sum=sum+Double.parseDouble(ai);catch(Exception ee) aver=sum/count;text2.setText(null);text2.append("n 和 :"+sum);text2.append("n 平均值 :"+aver);public void removeUpdate(DocumentEvent e)changedUpdate(e);public

29、void insertUpdate(DocumentEvent e)changedUpdate(e);2 . public class E public static void main(String args) ComputerFrame fr=new ComputerFrame();class ComputerFrame extends JFrame implements ActionListener JTextField text1,text2,text3;JButton buttonAdd,buttonSub,buttonMul,buttonDiv;JLabel label;publi

30、c ComputerFrame() setLayout(new FlowLayout();text1=new JTextField(10);text2=new JTextField(10);text3=new JTextField(10);label=new JLabel(" ",JLabel.CENTER);label.setBackground(Color.green);add(text1);add(label);add(text2); add(text3);buttonAdd=new JButton(" 加 "); buttonSub=new JB

31、utton(" 減 "); buttonMul=new JButton(" 乘 "); buttonDiv=new JButton(" 除 "); add(buttonAdd); add(buttonSub);add(buttonMul); add(buttonDiv); buttonAdd.addActionListener(this); buttonSub.addActionListener(this); buttonMul.addActionListener(this); buttonDiv.addActionListener(

32、this); setSize(300,320);setVisible(true); validate(); setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); public void actionPerformed(ActionEvent e) double n;if(e.getSource()=buttonAdd) double n1,n2;try n1=Double.parseDouble(text1.getText(); n2=Double.parseDouble(text2.getText(); n=n1+n2;text3.setTex

33、t(String.valueOf(n); label.setText("+"); catch(NumberFormatException ee) text3.setText(" 請(qǐng)輸入數(shù)字字符 ");else if(e.getSource()=buttonSub) double n1,n2;try n1=Double.parseDouble(text1.getText(); n2=Double.parseDouble(text2.getText(); n=n1-n2;text3.setText(String.valueOf(n); label.setTe

34、xt("-"); catch(NumberFormatException ee) text3.setText(" 請(qǐng)輸入數(shù)字字符 ");else if(e.getSource()=buttonMul) double n1,n2;try n1=Double.parseDouble(text1.getText(); n2=Double.parseDouble(text2.getText(); n=n1*n2;text3.setText(String.valueOf(n);label.setText("*");catch(NumberFor

35、matException ee) text3.setText(" 請(qǐng)輸入數(shù)字字符 ");else if(e.getSource()=buttonDiv)double n1,n2;try n1=Double.parseDouble(text1.getText(); n2=Double.parseDouble(text2.getText(); n=n1/n2;text3.setText(String.valueOf(n); label.setText("/");catch(NumberFormatException ee) text3.setText(&qu

36、ot; 請(qǐng)輸入數(shù)字字符 "); validate();3. public class E public static void main(String args) Window win = new Window(); win.setTitle(" 使用 MVC 結(jié)構(gòu) "); win.setBounds(100,100,420,260);class Window extends JFrame implements ActionListener Lader lader; / 模型 JTextField textAbove,textBottom,textHeight;

37、/ 視圖 JTextArea showArea; / 視圖 JButton controlButton;/ 控制器Window() init();setVisible(true); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);void init() lader = new Lader();textAbove = new JTextField(5); textBottom = new JTextField(5); textHeight = new JTextField(5); showArea = new JTextArea(); control

38、Button=new JButton(" 計(jì)算面積 "); JPanel pNorth=new JPanel(); pNorth.add(new JLabel(" 上底 :"); pNorth.add(textAbove);pNorth.add(new JLabel(" 下底 :");pNorth.add(textBottom);pNorth.add(new JLabel(" 高 :");pNorth.add(textHeight);pNorth.add(controlButton);controlButton.a

39、ddActionListener(this);add(pNorth,BorderLayout.NORTH);add(new JScrollPane(showArea),BorderLayout.CENTER);public void actionPerformed(ActionEvent e) trydouble above = Double.parseDouble(textAbove.getText().trim();double bottom = Double.parseDouble(textBottom.getText().trim();double height = Double.pa

40、rseDouble(textHeight.getText().trim();lader.setAbove(above) ;lader.setBottom(bottom);lader.setHeight(height);double area = lader.getArea();showArea.append(" 面積 :"+area+"n");catch(Exception ex) showArea.append("n"+ex+"n");class Lader double above,bottom,height;

41、public double getArea() double area = (above+bottom)*height/2.0;return area;public void setAbove(double a) above = a;public void setBottom(double b) bottom = b;public void setHeight(double c) height = c;習(xí)題十(第 10 章)一、問答題1 使用 FileInputStream 。2 FileInputStream 按字節(jié)讀取文件, FileReader 按字符讀取文件。3不可以。4使用對(duì)象流寫入

42、或讀入對(duì)象時(shí),要保證對(duì)象是序列化的。5使用對(duì)象流很容易得獲取一個(gè)序列化對(duì)象的克隆,只需將該對(duì)象寫入到對(duì)象輸出流,那么用對(duì)象輸入流讀 回的對(duì)象一定是原對(duì)象的一個(gè)克隆。二、選擇題1 . Co 2. B 三、閱讀程序1 【 代碼 1】: 51?!敬a 2 】: 0。dbc2 【代碼1】:3?!敬a2】:abc?!敬a3】:1?!敬a4】: 3上機(jī)實(shí)習(xí)題,解答略。四、編程題1 public class E public static void main(String args) File f=new File("E.java");try RandomAccessFile rando

43、m=new RandomAccessFile(f,"rw"); random.seek(0);long m=random.length();while(m>=0) m=m-1; random.seek(m); int c=random.readByte(); if(c<=255&&c>=0) else m=m-1; random.seek(m); byte cc=new byte2; random.readFully(cc);catch(Exception exp)2 . public class E public static void

44、main(String args ) File file=new File("E.java");File tempFile=new File("temp.txt");try FileReader inOne=new FileReader(file); BufferedReader inTwo= new BufferedReader(inOne); FileWriter tofile=new FileWriter(tempFile); BufferedWriter out= new BufferedWriter(tofile); String s=null

45、;int i=0;s=inTwo.readLine(); while(s!=null) i+;out.write(i+" "+s); out.newLine(); s=inTwo.readLine();inOne.close();inTwo.close();out.flush();out.close();tofile.close(); catch(IOException e)3. public class E public static void main(String args) File file = new File("a.txt");Scanne

46、r sc = null;double sum=0;int count = 0;try sc = new Scanner(file);while(sc.hasNext()try double price = sc.nextDouble();count+;sum = sum+price;catch(InputMismatchException exp)String t = sc.next();catch(Exception exp) 習(xí)題十一(第 11 章)一、問答題1( 1)添加數(shù)據(jù)源,( 2)選擇驅(qū)動(dòng)程序,( 3)命名數(shù)據(jù)源名稱。 2不必使用數(shù)據(jù)名稱。3 減輕數(shù)據(jù)庫內(nèi)部 SQL語句解釋器的負(fù)擔(dān)

47、。4 事務(wù)由一組 SQL語句組成,所謂事務(wù)處理是指:應(yīng)用程序保證事務(wù)中的SQL語句要么全部都執(zhí)行,要么一個(gè)都不執(zhí)行。5 ( 1)用setAutoCommit()方法關(guān)閉自動(dòng)提交模式,(2)用commit()方法處理事務(wù),(3)用rollback。方法處理事務(wù)失敗。四、編程題1.public class E public static void main(String args) Query query=new Query();String dataSource="myData"String tableName="goods"Scanner read=ne

48、w Scanner(System.in);dataSource = read.nextLine();tableName = read.nextLine(); query.setDatasourceName(dataSource); query.setTableName(tableName);query.setSQL("SELECT * FROM "+tableName);query.inputQueryResult();class Query String datasourceName="" / 數(shù)據(jù)源名String tableName="&q

49、uot;/ 表名String SQL;/SQL 語句public Query() catch(ClassNotFoundException e) public void setDatasourceName(String s) datasourceName = s.trim();public void setTableName(String s) tableName = s.trim();public void setSQL(String SQL) this.SQL = SQL.trim();public void inputQueryResult() Connection con;Statem

50、ent sql;ResultSet rs;try String uri = "jdbc:odbc:"+datasourceName;String id = ""String password = ""con = DriverManager.getConnection(uri,id,password);DatabaseMetaData metadata = con.getMetaData();ResultSet rs1 = metadata.getColumns(null,null,tableName,null);int 字段個(gè)數(shù) =

51、0;while(rs1.next() 字段個(gè)數(shù) +;sql = con.createStatement();rs = sql.executeQuery(SQL);while(rs.next() for(int k=1;k<= 字段個(gè)數(shù) ;k+) con.close();catch(SQLException e) 2.public class E public static void main(String args) Query query = new Query();String dataSource = "myData"String tableName = &qu

52、ot;goods" query.setDatasourceName(dataSource); query.setTableName(tableName);String name = ""Scanner read=new Scanner(System.in); name = read.nextLine();String str="'%"+name+"%'"String SQL = "SELECT * FROM "+tableName+" WHERE name LIKE "

53、+str; query.setSQL(SQL);query.inputQueryResult();class Query String datasourceName=""/ 數(shù)據(jù)源名String tableName=""/ 表名String SQL;/SQL 語句public Query() catch(ClassNotFoundException e) public void setDatasourceName(String s) datasourceName = s.trim();public void setTableName(String s)

54、tableName = s.trim();public void setSQL(String SQL) this.SQL = SQL.trim();public void inputQueryResult() Connection con;Statement sql;ResultSet rs;try String uri = "jdbc:odbc:"+datasourceName;String id = ""String password = ""con = DriverManager.getConnection(uri,id,password); DatabaseMetaData metadata = con.getMetaData();ResultSet rs1 = metadata.getColumns(null,null,tableName,null); int 字段個(gè)數(shù) = 0;while(rs1.next() 字段個(gè)數(shù) +;sql = con.createStatement();rs = sql.executeQuery(SQL);while(rs.

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(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)論