版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、河北工業(yè)大學(xué)計(jì)算機(jī)學(xué)院網(wǎng)絡(luò)編程實(shí)驗(yàn)報(bào)告實(shí)驗(yàn)一:Java 基本語(yǔ)法實(shí)驗(yàn)?zāi)康模毫私?Java 的數(shù)據(jù)類型,掌握各種變量的聲明方式,理解運(yùn)算符的優(yōu)先級(jí),掌握 Java 基本數(shù)據(jù)類型、運(yùn)算符與表達(dá)式,掌握順序結(jié)構(gòu)、選擇結(jié)構(gòu)和循環(huán)結(jié)構(gòu)語(yǔ)法的程序設(shè)計(jì)方法。實(shí)驗(yàn)要求: 1、編寫一個(gè)聲明 Java 不同數(shù)據(jù)類型變量的程序。2、編寫使用不同選擇結(jié)構(gòu)的程序。3、編寫使用不同循環(huán)結(jié)構(gòu)結(jié)構(gòu)的程序。實(shí)驗(yàn)內(nèi)容: 1、聲明不同數(shù)據(jù)類型變量1)編寫聲明不同數(shù)據(jù)類型變量的程序,代碼見實(shí)驗(yàn)指導(dǎo)書。運(yùn)行結(jié)果:2)Integer類在某對(duì)象中打包了原始類型為int的值。Integer類型對(duì)象包含int型的單個(gè)域。此外,此類提供了許多方
2、法,可以將int型轉(zhuǎn)換為string 型,也可以將Sring型轉(zhuǎn)換為int型,還包含處理int類型時(shí)的其他有用常量和方法。代碼見實(shí)驗(yàn)指導(dǎo)書。運(yùn)行結(jié)果:2、使用選擇結(jié)構(gòu)使用 if.else 語(yǔ)句,編寫源程序文件,代碼見實(shí)驗(yàn)指導(dǎo)書。 運(yùn)行結(jié)果:使用 switch 語(yǔ)句1)編寫程序用swith語(yǔ)句實(shí)現(xiàn)從鍵盤讀如1,2,3時(shí),屏幕提示不同信息。代碼見實(shí)驗(yàn)指導(dǎo)書。運(yùn)行結(jié)果: 3、使用循環(huán)結(jié)構(gòu)使用for語(yǔ)句1)程序源代碼見實(shí)驗(yàn)指導(dǎo)書。 2)改正源程序中錯(cuò)誤:public static void main (String args) throws java.io.IOException 運(yùn)行結(jié)果: 使用wh
3、ile語(yǔ)句1)程序源代碼實(shí)驗(yàn)指導(dǎo)書: 運(yùn)行結(jié)果:多重循環(huán),輸出九九乘法表的程序。 運(yùn)行結(jié)果:4、編程題,編寫程序并寫出運(yùn)行結(jié)果1)用分支語(yǔ)句編程,輸入一個(gè)學(xué)生成績(jī),給出相應(yīng)等級(jí): 90100 優(yōu) 8089 良 7079 中 6960 及格 059 不及格代碼:import java.io.*;class aaa public static void main(String args) throws IOException BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in); System.out.
4、println(Please press the score in:); int num=Integer.parseInt(stdin.readLine(); num=(int)(num/10); switch(num) case 10: case 9: System.out.println(The students level is A!); break; case 8: System.out.println(The students level is B!); break; case 7: System.out.println(The students level is C!); brea
5、k; case 6: System.out.println(The students level is D!); break; case 5: case 4: case 3: case 2: case 1: case 0: System.out.println(The students level is E!); break; default: System.out.println(The key press is wrong!); 結(jié)果:2) 采用for循環(huán)求1至1000之內(nèi)的所有“完全數(shù)”。所謂“完全數(shù)”是指一個(gè)數(shù),恰好等于它的因子之和。例如,6是一個(gè)完全數(shù),因?yàn)?的因子為1、2、3,而6
6、1十2十30 代碼:class aaa public static void main(String args) System.out.println(Now looking for the number between 1 to 1000 :);for(int i=1;i=1000;i+)int sum=0;for(int j=1;j=i/2;j+)if(i%j=0) sum+=j;if(sum=i) System.out.print(t+i+t);System.out.println();System.out.println(select over!); 結(jié)果:3)一個(gè)整數(shù)的各位數(shù)字之和能
7、被9整除,則該數(shù)也能被9整除。編程驗(yàn)證給定的整數(shù)能否被9整除。代碼:import java.io.*;class ssspublic static void main(String arg) throws IOExceptionBufferedReader stdin = new BufferedReader(new InputStreamReader(System.in);int num=0;int NO;System.out.print(請(qǐng)輸入給定的整數(shù):);String str=stdin.readLine();NO=Integer.parseInt(str); for(int i=0;
8、istr.length();i+) num+=NO%10; NO=(int)(NO/10);if(num%9=0)System.out.println(str+可以被9整除。);else System.out.println(str+不可以被9整除。);結(jié)果:4)已知XYZ+YZZ=532,其中X、Y和Z為數(shù)字,編程求出X,Y和Z的值。 代碼:class ssspublic static void main(String arg)int X,Y,Z;for(X=1;X=4;X+)for(Y=1;Y=4;Y+)for(Z=0;Z=2;Z+)int sum=(100*X+10*Y+Z)+(100*
9、Y+10*Z+Z);if(sum=532)System.out.println(X= +X+ , Y= +Y+ , Z= +Z); 結(jié)果:實(shí)驗(yàn)二:面向?qū)ο缶幊虒?shí)驗(yàn)?zāi)康模和ㄟ^(guò)編程和上機(jī)實(shí)驗(yàn)理解 Java 語(yǔ)言是如何體現(xiàn)面向?qū)ο缶幊袒舅枷?,熟悉類的封裝方法以及如何創(chuàng)建類和對(duì)象,熟悉成員變量和成員方法的特性,熟悉類的繼承性和多態(tài)性的作用,熟悉包、接口的使用方法,掌握OOP方式進(jìn)行程序設(shè)計(jì)的方法。實(shí)驗(yàn)要求: 1、編寫程序?qū)崿F(xiàn)類的定義和使用。2、編寫不同成員和不同成員方法修飾方法的程序。3、編寫體現(xiàn)類的繼承性(成員變量、成員方法、成員變量隱藏)的程序和多態(tài)性(成員方法重載、構(gòu)造方法重載)的程序。4、編
10、寫接口的定義和使用的程序。5、編寫包的定義和使用的程序。實(shí)驗(yàn)內(nèi)容: 1、類的定義和使用代碼:class Tablepublic String name;public int weight,X,Y,high;public Table(String nwname,int nwweight,int nwX,int nwY,int nwhigh)=nwname;this.weight=nwweight;this.X=nwX;this.Y=nwY;this.high=nwhigh;public int Area(int X,int Y)int Area=X*Y;return Area;
11、public void ChangeWeight(int NewWeight)weight=NewWeight;public void Display()System.out.println(The Tables Name: Name= +name);System.out.println(The Tables Size: X= +X+ ,Y= +Y);System.out.println(The Tables Area: Area= +Area(X,Y);System.out.println(The Tables Weight: Weight= +weight);System.out.prin
12、tln(The Tables High: High= +high);public static void main(String arg)System.out.println(Now Display MyTables Information:);Table tb=new Table(Mytable,170,10,15,75);tb.Display();System.out.println(Now Change MyTables Weight to 200!);tb.ChangeWeight(200);System.out.println(Now Display MyTables New Inf
13、ormation:);tb.Display();結(jié)果:2、修飾符的使用程序功能:通過(guò)兩個(gè)類StaticDemo、TestDemo說(shuō)明靜態(tài)變量/方法與實(shí)例變量/方法的區(qū)別,程序源代碼見實(shí)驗(yàn)指導(dǎo)書。對(duì)源程序進(jìn)行編譯,查錯(cuò)并運(yùn)行。靜態(tài)方法不能訪問(wèn)實(shí)例變量。3、繼承和多態(tài)的作用代碼:abstract class RodentString name;public String getName()return name;public void setName(String name)=name;public abstract void run();class Mouse extends
14、Rodentpublic void run()class Gerbil extends Mouseclass Hamster extends Mouse4、接口的定義和使用5、包的定義和使用 創(chuàng)建自定義包Mypackage 在包中創(chuàng)建類,編譯Test_YMD.java文件,分析運(yùn)行結(jié)果。 編寫使用包Mypackage中Test_YMD類的程序,編譯并運(yùn)行程序,分析程序的運(yùn)行結(jié)果。6、編程題,編寫程序并寫出運(yùn)行結(jié)果 (1)創(chuàng)建一個(gè)名稱為Pay的類,該類包括工作小時(shí)、每小時(shí)工資、扣繳率、應(yīng)得工資總額和實(shí)付工資等5個(gè)雙精度型的成員變量。創(chuàng)建3個(gè)重載的應(yīng)得工資computeNetPay()方法。應(yīng)得工
15、資是工時(shí)乘以每小時(shí)工資的計(jì)算結(jié)果。當(dāng)computeNetPay()接收代表小時(shí)、扣繳率和工資率的數(shù)值時(shí),計(jì)算出應(yīng)得工資=工作小時(shí)*每小時(shí)工資*(1扣繳率)*(1工資率)。當(dāng)computeNetPay()接收兩個(gè)參數(shù)時(shí),扣繳率假定為15%,計(jì)算出應(yīng)得工資=工作小時(shí)*每小時(shí)工資*(10.15)*(1工資率) 當(dāng)computeNetPay()接收一個(gè)參數(shù)時(shí),扣繳率假定為15%,每小時(shí)工資率為4.65%。同時(shí)編寫一個(gè)測(cè)試類,該測(cè)試類的main方法測(cè)試所有3個(gè)重載的方法。代碼:class Paydouble work_hour,price=100,deduct_rate;double should_pa
16、y,real_pay=0;public double computeNetPay(double work_hour)should_pay=work_hour*this.price*(1-0.15)*(1-0.0465);return should_pay;public double computeNetPay(double work_hour,double price_rate)should_pay=work_hour*this.price*(1-0.15)*(1-price_rate);return should_pay;public double computeNetPay(double
17、work_hour,double price_rate,double deduct_rate)should_pay=work_hour*this.price*(1-deduct_rate)*(1-price_rate);return should_pay;public void display()System.out.println(The employee should be pay $ +should_pay); public static void main(String args) Pay pay=new Pay(); System.out.println(The first empl
18、oyee worked 8hour); puteNetPay(8.0); pay.display(); System.out.println(The first employee worked 8hour and price_rate 8%); puteNetPay(8.0,0.08); pay.display(); System.out.println(The first employee worked 8hour and price_rate 10% and deduct_rate is 18%); puteNetPay(8.0,0.1,0.18); pay.display(); 結(jié)果:(
19、2)商店銷售某一件商品,商店每天公布統(tǒng)一的折扣(discount)。同時(shí)允許銷售人員在銷售時(shí)靈活掌握價(jià)格(price),在統(tǒng)一折扣的基礎(chǔ)上,對(duì)一次購(gòu)入10件以上者,還可以銷售9.5折優(yōu)惠?,F(xiàn)已知當(dāng)天5名售貨員的銷售情況為: 售貨員編號(hào)(num) 銷售件數(shù)(quantity) 銷售單價(jià)(price) 101 3 126.8 221 8 125.6 325 10 124.8 108 45 123.4 901 100 121.5 編寫銷售商品類Sale和含有main方法的公共類Test,計(jì)算當(dāng)天此商品的總銷售額sum,以及每件商品的平均售價(jià),并在顯示器上顯示。代碼:import java.io.*;
20、class Saledouble discount,price;int sale_sum=0;double sum=0.0,price_avg=0.0;public void change_discount(double discount)this.discount=discount;public void SaleCount(int person_sale_num,double price)if(person_sale_num10) sum+=price*discount*person_sale_num;else sum+=0.95*price*discount*person_sale_nu
21、m;sale_sum+=person_sale_num;price_avg=sum/sale_sum;/return sale_sum;public void display()System.out.println(The total sale namber is: +sale_sum);System.out.println(The total sale money is: +sum);System.out.println(The avg of the price is: +price_avg); class Testpublic static void main(String args)th
22、rows IOException Sale sale=new Sale(); System.out.println(Press the discount :); BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in); double disc=Double.parseDouble(stdin.readLine(); sale.change_discount(disc); System.out.println(The saler 101 saled 3 goods at price 126.8;); s
23、ale.SaleCount(3,126.8); System.out.println(The saler 221 saled 8 goods at price 125.6;); sale.SaleCount(8,125.6); System.out.println(The saler 325 saled 10 goods at price 124.8;); sale.SaleCount(10,124.8); System.out.println(The saler 108 saled 45 goods at price 123.4;); sale.SaleCount(45,123.4); Sy
24、stem.out.println(The saler 901 saled 100 goods at price 121.5;); sale.SaleCount(100,121.5); sale.display(); 結(jié)果:(3)定義接口Shape及其抽象方法getArea()和getPerimeter()用于計(jì)算圖形和面積和周長(zhǎng)。定義類Rectangle(矩形)、類Circle(圓形)、類Triangle(三角形),要求這些類繼承點(diǎn)類Coordinates()并實(shí)現(xiàn)接口的抽象方法。代碼:class Test public static void main(String args)circle
25、c=new circle();c.display();rectangle r=new rectangle();r.display();triangle t=new triangle();t.display(); interface cal_Shapefinal double PI=3.14;abstract double getArea(double r);abstract double getArea(double a,double b);abstract double getArea(double a,double b,double c);abstract double getPerime
26、ter(double r);abstract double getPerimeter(double a,double b);abstract double getPerimeter(double a,double b,double c);class Coordinates implements cal_Shapepublic double getArea(double r) return PI*r*r;public double getPerimeter(double r)return 2*PI*r;public double getArea(double a,double b)return
27、a*b;public double getPerimeter(double a,double b)return 2*(a+b);public double getArea(double a,double b,double c)double s=(a+b+c)/2;return Math.sqrt(s*(s-a)*(s-b)*(s-c);public double getPerimeter(double a,double b,double c)return a+b+c;class circle extends Coordinatespublic void display()double circ
28、le_area,circle_perimeter;Coordinates x=new Coordinates();circle_area=x.getArea(2.0);circle_perimeter=x.getPerimeter(2.0);System.out.println(半徑為2的圓的面積為:+circle_area+,周長(zhǎng)為:+circle_perimeter);class rectangle extends Coordinatespublic void display() double rectangle_area,rectangle_perimeter;Coordinates y
29、=new Coordinates();rectangle_area=y.getArea(2.0,3.0);rectangle_perimeter=y.getPerimeter(2.0,3.0);System.out.println(長(zhǎng),寬為2,3的矩形的面積為:+rectangle_area+,周長(zhǎng)為:+rectangle_perimeter);class triangle extends Coordinatespublic void display()double triangle_area,triangle_perimeter;Coordinates z=new Coordinates()
30、;triangle_area=z.getArea(3.0,4.0,5.0);triangle_perimeter=z.getPerimeter(3.0,4.0,5.0);System.out.println(三邊長(zhǎng)為3,4,5的三角形的面積為:+triangle_area+,周長(zhǎng)為:+triangle_perimeter);結(jié)果:實(shí)驗(yàn)三:異常處理程序設(shè)計(jì) 實(shí)驗(yàn)?zāi)康模毫私釰ava中異常處理(exception)的作用及常用的異常類,掌握異常處理的設(shè)計(jì)方法。實(shí)驗(yàn)要求:理解系統(tǒng)異常處理的機(jī)制和創(chuàng)建自定義異常的方法。實(shí)驗(yàn)內(nèi)容: 1)下面的程序中定義了一個(gè)用戶程序的異常InsuffivientFound
31、sException,這個(gè)異常用來(lái)處理帳戶資金不足的邏輯錯(cuò)誤。2)3)根據(jù)題目要求,編寫程序并寫出運(yùn)行結(jié)果 1、設(shè)計(jì)一個(gè)Java程序,自定義異常類,從命令行(鍵盤)輸入一個(gè)字符串,如果該字符串值為“XYZ”,則拋出一個(gè)異常信息“This is a XYZ”,如果從命令行輸入ABC,則沒(méi)有拋出異常。(只有XYZ和ABC兩種輸入)。代碼:import java.io.*; class UserExceptionDemopublic static void main(String args)throws IOException BufferedReader stdin = new BufferedR
32、eader(new InputStreamReader(System.in);System.out.print(請(qǐng)輸入字符串XYZ/ABC:);String str=stdin.readLine(); try if(str=ABC)System.out.println(Normal);elsethrow new UserDefineException(); catch(UserDefineException e) System.out.println(e.toString(); class UserDefineException extends ExceptionUserDefineExcep
33、tion()System.out.println(Exception occured);public String toString()returnThis is a XYZ;結(jié)果:2、使用命令行方式輸入四個(gè)參數(shù),分別是姓名、數(shù)學(xué)成績(jī)、英語(yǔ)成績(jī)、Java成績(jī),求總成績(jī)和平均成績(jī),處理數(shù)組下標(biāo)越界、成績(jī)不是數(shù)組、成績(jī)輸入不合理(不在1-100之間)的異常。要去:自己定義輸出成績(jī)不合理的異常。提示1:數(shù)組下標(biāo)越界異常為:ArrayIndexOutOfBoundsException 成績(jī)不是數(shù)組的異常采用Java中的異常:NumberFormatException 提示2:自定義的異常通常是Exce
34、ption的子類。代碼:import java.io.*; class Scorepublic static void main(String args)throws IOException String name;int info=new int3;int i;float sum=0.0f;float avg=0.0f;System.out.println(請(qǐng)輸入學(xué)生的姓名:);BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in);name=stdin.readLine();System.out.
35、println(請(qǐng)輸入學(xué)生的數(shù)學(xué)成績(jī)、英語(yǔ)成績(jī)、Java成績(jī):);tryfor(i=0;i3;i+)infoi=Integer.parseInt(stdin.readLine(); catch(ArrayIndexOutOfBoundsException e1)e1.printStackTrace();catch(NumberFormatException e2)e2.printStackTrace(); for(i=0;i3;i+) int Temp=infoi; try if(Temp100)throw new UserDefineException();elsesum+=infoi; c
36、atch(UserDefineException e)System.out.println(e.toString(Temp); avg=sum/3.0f; System.out.println(The sum=+sum+,the avg=+avg);class UserDefineException extends ExceptionUserDefineException()System.out.println(Exception occured);public String toString(int a)returnThe number +a+isnt a score!;結(jié)果:實(shí)驗(yàn)四:多線程
37、程序設(shè)計(jì)實(shí)驗(yàn)?zāi)康模豪斫饩€程的概念、線程的生命周期,掌握多線程的編程:繼承Thread類與使用Runnable接口。實(shí)驗(yàn)要求:1、掌握兩種創(chuàng)建線程的方法:一種是創(chuàng)建用戶自己的線程子類,另一種是在用戶自己的類中實(shí)現(xiàn)Runnable接口。2、掌握線程優(yōu)先極。3、掌握線程的同步方法。實(shí)驗(yàn)內(nèi)容: 用創(chuàng)建Thread類的子類的方法實(shí)現(xiàn)多線程 用實(shí)現(xiàn)Runnable接口的方法實(shí)現(xiàn)多線程 線程優(yōu)先級(jí)的作用:用繼承Thread類和執(zhí)行Runnable接口的方法創(chuàng)建兩個(gè)線程,并測(cè)試這兩個(gè)線程的同時(shí)運(yùn)行情況。 a. 將兩個(gè)線程設(shè)為同優(yōu)先級(jí),比較運(yùn)行情況。 代碼:class outputClass implement
38、s RunnableString name;outputClass(String s)name=s;public void run()for(int i=0;i10;i+)System.out.println(name);class runThreadspublic static void main(String args)outputClass out1=new outputClass(Thread 1);outputClass out2=new outputClass(Thread 2);Thread t1=new Thread(out1);Thread t2=new Thread(out
39、2);t1.setPriority(1);t2.setPriority(1);t1.start();t2.start();結(jié)果:b. 將兩個(gè)線程設(shè)為同優(yōu)先級(jí), 比較線程調(diào)用sleep()/yeild()方法后出現(xiàn)什么情況。代碼:class outputClass implements RunnableString name;outputClass(String s)name=s;public void run()for(int i=0;i10;i+)System.out.println(name);tryThread.sleep(400); catch(InterruptedException
40、 e)class runThreadspublic static void main(String args)outputClass out1=new outputClass(Thread 1);outputClass out2=new outputClass(Thread 2);Thread t1=new Thread(out1);Thread t2=new Thread(out2);t1.setPriority(1);t2.setPriority(10);t1.start();t2.start();結(jié)果:c.將兩個(gè)線程設(shè)為不同優(yōu)先級(jí),比較以上兩種情況。代碼:t1.setPriority(1
41、);t2.setPriority(2);結(jié)果:代碼:t1.setPriority(1);t2.setPriority(10);結(jié)果:請(qǐng)根據(jù)題目要求,編寫程序并寫出運(yùn)行結(jié)果 1、 編寫一個(gè)應(yīng)用程序,創(chuàng)建三個(gè)線程分別顯示各自的時(shí)間。代碼:import java.util.*;import java.text.*; class ThreeTimeThread extends Threadpublic ThreeTimeThread(String str)super(str);public void run() while (true)SimpleDateFormat formatter = new
42、SimpleDateFormat (yyyy.MM.dd G at hh:mm:ss z);Date currentTime = new Date();trysleep(1000);catch (Exception e)String dateString = formatter.format(currentTime);System.out.println(getName()+:+dateString);public static void main(String args)throws Exceptionnew ThreeTimeThread(first).start(); new Three
43、TimeThread(second).start();new ThreeTimeThread(third).start(); 結(jié)果:2、 利用Java中的waitnotify調(diào)度實(shí)現(xiàn)操作系統(tǒng)課程中介紹的生產(chǎn)者/消費(fèi)者模型,要求系統(tǒng)中有3個(gè)生產(chǎn)者線程和3個(gè)消費(fèi)者線程,用于存放數(shù)據(jù)的緩沖區(qū)采用字符數(shù)組來(lái)模擬,緩沖區(qū)的個(gè)數(shù)為10個(gè)。 代碼:class SyncStackprivate int index=0;private char buffer=new char10;public synchronized char pop()while(index=0)trySystem.out.println(
44、pop waiting.);this.wait();catch(InterruptedException e)index-;this.notify();return bufferindex;public synchronized void push(char c)while(index=buffer.length)trySystem.out.println(push waiting.);this.wait(); catch(InterruptedException e)bufferindex=c;index+;this.notify();public synchronized void sho
45、w()for(int i=0;iindex;i+)System.out.println(bufferi);System.out.println();class Producer implements RunnableSyncStack theStack;public Producer(SyncStack s)theStack=s;public void run()char c;for(;)c=(char)(Math.random()*26+A);theStack.push(c);System.out.println(Produced:+c);theStack.show();tryThread.
46、sleep(int)(Math.random()*1000);catch(InterruptedException e)class Consumer implements RunnableSyncStack theStack;public Consumer(SyncStack s)theStack=s;public void run()char c;for(;)c=theStack.pop();System.out.println(Consumed:+c);theStack.show();tryThread.sleep(int)(Math.random()*1000);catch(Interr
47、uptedException e)public class SyncTestpublic static void main(String args)SyncStack stack=new SyncStack();Producer pro=new Producer(stack);Thread t1=new Thread(pro);Thread t2=new Thread(pro);Thread t3=new Thread(pro);t1.start();t2.start();t3.start();Consumer con=new Consumer(stack);Thread t4=new Thread(con);Thread t5=new Thread(con);Thread t6=new
溫馨提示
- 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ù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 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ì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 社會(huì)工作專業(yè)實(shí)習(xí)報(bào)告
- 債券投資分析與交易方法與案例解析01(論文資料)
- 心靈成長(zhǎng)(課件)-生產(chǎn)經(jīng)營(yíng)管理-經(jīng)管營(yíng)銷-專業(yè)資料
- 吉林省長(zhǎng)春市文曲星名校2025屆高三(最后沖刺)英語(yǔ)試卷含解析
- 福建省泉州市德化一中2025屆高三第一次調(diào)研測(cè)試英語(yǔ)試卷含解析
- 福建省泉州永春僑中2025屆高三下學(xué)期聯(lián)合考試英語(yǔ)試題含解析
- 安徽省阜陽(yáng)四中、阜南二中、阜南實(shí)驗(yàn)中學(xué)2025屆高三第二次聯(lián)考語(yǔ)文試卷含解析
- 2025屆云南省文山州廣南二中高三適應(yīng)性調(diào)研考試語(yǔ)文試題含解析
- 內(nèi)蒙古一機(jī)集團(tuán)第一中學(xué)2025屆高三第三次測(cè)評(píng)數(shù)學(xué)試卷含解析
- 2025屆山東省淄博一中高考臨考沖刺語(yǔ)文試卷含解析
- 護(hù)理年終個(gè)人工作總結(jié)
- 河北省健康體檢主檢醫(yī)師題庫(kù)2024年12月
- 電力行業(yè)用水管理制度
- 2025年1月“八省聯(lián)考”考前猜想卷數(shù)學(xué)試題01 含解析
- 《論教育》主要篇目課件
- 2022年軍隊(duì)文職統(tǒng)一考試《專業(yè)科目》管理學(xué)類-管理學(xué)試卷(含解析)
- 靜脈輸液治療的風(fēng)險(xiǎn)管理
- 江南大學(xué)《高分子化學(xué)實(shí)驗(yàn)》2022-2023學(xué)年第一學(xué)期期末試卷
- 18古詩(shī)三首《書湖陰先生壁》說(shuō)課稿2024-2025學(xué)年統(tǒng)編版語(yǔ)文六年級(jí)上冊(cè)
- 設(shè)備驗(yàn)證工作年底述職報(bào)告
- 精神病藥物與藥物性肝損傷
評(píng)論
0/150
提交評(píng)論