版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)
文檔簡介
1、本科實驗報告課程名稱:java 語言程序設(shè)計實驗地點:明向校區(qū)綜合實驗樓專業(yè)班級:軟件 1302學(xué)號:2013006158學(xué)生姓名:李國濤指導(dǎo)教師:李君嬋時間: 2014 年 12 月 31 日實驗名稱Java 語言基礎(chǔ)實驗?zāi)康暮鸵螅?1) 通過實驗,掌握 Java 語言程序設(shè)計的基本方法。(2) 學(xué)會 Java 語言中標(biāo)示符的命名、運算符和表達式的應(yīng)用。(3) 熟練地掌握 Java 程序流程控制語句的應(yīng)用。實驗內(nèi)容(1) 編寫應(yīng)用程序 ,計算 100(含100)以內(nèi)所有偶數(shù)的和。 (2) 編寫一個程序,求 1-100 間的素數(shù)。(3) 使用 for 循環(huán)語句,編寫程序輸出以下圖案。 主要儀
2、器設(shè)備筆記本電腦實驗記錄(寫出實驗內(nèi)容中的程序代碼和運行結(jié)果 )(可分欄或加頁 )package db;public class db public static void main(String args) / TODO Auto-generated method stub int sum=0;for(int i=1;i=100;i+)if(i%2=0)sum=sum+1;System.out.println(sum);package SS;public class SS public static void main(String args ) System. out .print( 1-
3、100 間的素數(shù)為: 2 ); / TODO Auto-generated method stub for (int i =1; i =100; i +)for ( int a=2; a=( i -1)System. out .print( i + );package shiyanyi;import java.io.*;public class One5 public static void main(String args) throws IOException for ( int i=0;i1&i%2=0);else System. out .print( n );for (int k=9
4、;ki/2;k-) System. out .print( );for (int j=0;j0;i-) if (i1&i%2=0); else System. out .print( n ); for (int k=9;ki/2;k-)System. out .print( ); for (int j=0;ji;j+)System. out .print( * ); 遇到的問題和解決方法1. 程序沒有輸出結(jié)果。解決方法:使用 java 提供的“ System.out.println() “方法輸出數(shù)據(jù)。2. 程序無法運行。解決方法:檢查代碼是否有語法錯誤,將鼠標(biāo)移動到感嘆號上查明原因。3. 程
5、序運行結(jié)果有異常心得體會1. java 在使用中每一項的實現(xiàn)都有很多種方法,要盡可能的嘗試,區(qū)別每種方法的特點。2. java 編程時要注意語法、邏輯錯誤。實驗名稱實驗 2 數(shù)組和字符串編程實驗?zāi)康暮鸵?.通過實驗,掌握 Java 語言中數(shù)組、字符串程序設(shè)計的基本方法。2.較熟練地掌握 Java 程序數(shù)組的應(yīng)用、字符串處理操作的方法應(yīng)用。實驗內(nèi)容1.編寫一個程序,在控制臺輸入 10 個數(shù),按大小順序輸出。2. 求一個 3*3 矩陣對角元素之和。3. 輸入一段字符串,統(tǒng)計其中有多少個單詞。 (單詞用空格隔開)主要儀器設(shè)備筆記本電腦實驗記錄(寫出實驗內(nèi)容中 2,3的程序代碼和運行結(jié)果 )( 可分
6、欄或加頁)2、求一個 3*3 矩陣對角元素之和。package shiyaner;import java.io.*;public class Two2 public static void main(String args)throws IOExceptionint a,suma=0;a= new int 33;for ( int i=0;i3;i+)for ( int j=0;j3;j+) aij=i+j;for ( int i=0;i3;i+)for ( int j=0;j3;j+)if (i=j)suma+=aij;System. out .print(suma);3、輸入一段字符串,統(tǒng)
7、計其中有多少個單詞。 (單詞用空格隔開)package shiyaner;import java.io.*;public class Two3 public static void main(String args)throws IOExceptionString str;char ch1 =new char 111; int q=0;InputStreamReader re = new InputStreamReader(System. in ); BufferedReader bre = new BufferedReader (re);str = bre.readLine();ch1=st
8、r.toCharArray();int nw,state;state=0;nw=0;for (int i=0;ich1. length ;i+) if (ch1i= ) state=0;else if (state=0)state=1;+nw;System. out .print(nw);遇到的問題和解決方法1. 使用二維數(shù)組時要用 new 創(chuàng)建數(shù)組。2. 程序報出異常,程序不能運行時,要判斷是否要拋出異常。實驗體會使用數(shù)組時要注意下標(biāo)值不要超出范圍,數(shù)組元素的下標(biāo)從零開始,直到數(shù)組元素個數(shù)減1 為止,如果下標(biāo)超出范圍,則運行時會產(chǎn)生“數(shù)組訪問越界異?!?。實驗名稱實驗 3 Java 面向?qū)ο?/p>
9、程序設(shè)計實驗?zāi)康暮鸵笳莆?Java 面向?qū)ο蟪绦蛟O(shè)計中類、 繼承、包和接口的概念與應(yīng)用, 能熟練應(yīng)用方 法、類、成員變量等元素。實驗內(nèi)容1. 創(chuàng)建一個復(fù)數(shù)類 complex,以附屬進行數(shù)學(xué)運算、復(fù)數(shù)具有如下格式: RealPart+ImaginaryRart*I , 其中, I 為-1 的平方根。要求如下: 利用浮點變量表示此類的私有數(shù)據(jù)。 提供兩個構(gòu)造方法, 一個用于此類聲明 的對象的初始化;一個為默認(rèn)的無參構(gòu)造方法。 提供兩復(fù)數(shù)加、減、乘的運算方法。 按格式 (a,b) 打印復(fù)數(shù)。其中 a 為實部, b 為虛部。2. 創(chuàng)建銀行賬號 Account 類,實現(xiàn)存款 (balance) 的存
10、(deposit) 、取(withdraw) 和查 詢(getbalance) 等功能。3. 編程定義一個接口,實現(xiàn)三個數(shù)中求最小值和最大值的方法,并將程序存放在 mymaths包中。4. 編程實現(xiàn)以下簡單超市管理,具體要求如下: 實現(xiàn)描述超市的類 Suppermacket 類,具有貨架屬性 , 記錄系統(tǒng)中現(xiàn)有商品, 定義盤點商品的函數(shù) check( 盤點各類商品的數(shù)量 , 并輸出盤點結(jié)果 ) ,查詢商品的函 數(shù) query ,并顯示查詢結(jié)果; 定義商品類 Goods,具有商品名稱 Name,商品價格 Price ,商品產(chǎn)地 Producer 等屬性,操作 Sale(銷售商品,余額不足時給予提
11、示) 、Add(商品上架操作)和 ShowMe (顯示商品信息)。 main 函數(shù),測試以上所要求的各種功能, 即可以根據(jù)菜單命令增加、 刪除、 查詢商品、盤點商品,以及商品銷售和商品上架的操作 提示: 超市貨架可以使用商品數(shù)組 , 數(shù)組大小 100 表明存放 100個商品。 注意實現(xiàn)商品查詢的多態(tài)性, 要求可以根據(jù)商品的名稱或產(chǎn)地或價格查詢商品的數(shù)量主要儀器設(shè)備 筆記本電腦實驗記錄(寫出實驗內(nèi)容中 1,4的程序代碼和運行結(jié)果 )( 可分欄或加頁) 1、 創(chuàng)建一個復(fù)數(shù)類 complex,以附屬進行數(shù)學(xué)運算、復(fù)數(shù)具有如下格式: RealPart+ImaginaryRart*I , 其中, I 為
12、-1 的平方根。要求如下: 利用浮點變量表示此類的私有數(shù)據(jù)。提供兩個構(gòu)造方法,一個用于此類聲明的 對象的初始化;一個為默認(rèn)的無參構(gòu)造方法。提供兩復(fù)數(shù)加、減、乘的運算方法。按格式 (a,b) 打印復(fù)數(shù)。其中 a 為實部, b 為虛部。package shiyansan;public class Three1 public static void main(String args) complex a = new complex(1,2);complex b = new complex(3,4);a.print();a.add(b).print();a.sub(b).print();a.mul(b
13、).print();class complexfloat RealPart ;float ImaginaryRart ;public complex() RealPart = 0;ImaginaryRart = 0;public complex( float RealPart, float ImaginaryRart) this . RealPart = RealPart;this . ImaginaryRart = ImaginaryRart;public complex add(complex b)this . RealPart = this . RealPart +b. RealPart
14、 ;this . ImaginaryRart= this . ImaginaryRart +b. ImaginaryRart ;return this ;public complex sub(complex b)this . RealPart = this . RealPart -b. RealPart ;this . ImaginaryRart= this . ImaginaryRart -b. ImaginaryRart ;return this ;public complex mul(complex b) float a,d;a = this . RealPart *b. RealPar
15、t - this . ImaginaryRart *b. ImaginaryRart d = this . RealPart *b. ImaginaryRart + this . ImaginaryRart *b. RealPart this . RealPart = a;this . ImaginaryRart = d;return this ; public void print()System. out .println( ( +RealPart +, +ImaginaryRart +) );4、 packageshiyansan; import java.io.*; public cl
16、ass Three4 public static void main(String args)throws IOExceptionSuppermacket a = new Suppermacket(); int month;BufferedReader in =new BufferedReader( newInputStreamReader(System. in );String read =new String();for (;)System. out .println( 1 。增加商品種類 2 。盤點商品 3. 根據(jù)商品名查找4. 根據(jù)價格查找 5. 根據(jù)產(chǎn)地查找 6. 出售商品 7. 商
17、品上架 8 。顯示商品信息 ); );System. out .println( Enter the month number: month = ( int )Double. parseDouble switch (month) (in.readLine();casecase1:a.Add_Goods(); break ;2:a.check(); break ;casecasecase3:read = in.readLine();a.query(read);4:read = in.readLine();a.query(Float.5:read = in.readLine();a.query(r
18、ead,1);break ;parseFloat (read); break ; break ;case6:read =in.readLine();a.good Integer. case 7:read =parseInt(read).Sale();break ;in.readLine();a.good Integer.parseInt(read).Add();break ;case 8:read =in.readLine();a.parseInt(read).ShowMe();good Integer.case 9:read = in.readLine();a.delete(Integer.
19、break ;parseInt (read); break ; classSuppermacketpublic public publicGoods good = new Goods200 ; int Goods_num = -1; int Add_Goods()throws IOExceptionInputStreamReader re = BufferedReader bre =System. out .println(String Name =new String();new InputStreamReader(System. new BufferedReader (re); 輸入商品名
20、字: );in );Name = bre.readLine(); System. out .println( float Price = Float.System. out .println( String Produced = 輸入商品價格 );parseFloat (bre.readLine(); 輸入商品產(chǎn)地 ); new String();Produced = bre.readLine();for ( int i=0;i= Goods_num ;i+)if ( good i.getname().equals(Name)= good i.addcount();true )return 1
21、;this . Goods_num +;good Goods_num = new Goods();good Goods_num .setGoods(Name, Price, Produced); return 0;public void check()for ( int i=0;i= Goods_num ;i+)System. out .println( good i.getname()+ +good i.getcount();public void query(String Name)for ( int i=0;i= Goods_num ;i+)if (good i.getname().eq
22、uals(Name)= true )System. out .println( good i.getname()+ +good i.getcount();public void query( float Price )for ( int i=0;i= Goods_num ;i+)if ( good i.getprice()=Price)System. out .println(good i.getname()+ +good i.getcount();public void query(String Producer , int j )for ( int i=0;i= Goods_num ;i+
23、)if ( good i.getproducer().equals(Producer)=true )System. out .println(good i.getcount();public void delete( int i) int k;for (k=i+1;k0)this . count -;System. out .println( 商品已經(jīng)賣出! ); elseSystem. out .println( 商品已賣空,此操作不成功! ); public void Add() this . count +;System. out .println( 商品已經(jīng)上架! ); publicv
24、oidShowMe()System.out.println( 商品名稱 +this. Name);System.out.println( 商品價格 +this. Price ); publicSystem.out.println( 商品產(chǎn)地 +this. Produced );voidsetGoods(String Name, floatPrice,String Produced)this . Name = Name;this . Price = Price;this . Produced = Produced; public String getname() return this . Na
25、me; public float getprice()return this . Price ;public String getproducer()return this . Producedpublic void addcount()this . count +;public int getcount()return count ;遇到的問題和解決方法1. 聲明對象要用 new 實例化。2. 復(fù)數(shù)類的乘法運算中發(fā)生計算錯誤。解決方法:可以使用局部變量來存儲計算結(jié)果,然后再賦 給所在對象的變量,最后將對象返回。實驗體會1. java 中提供了很多方法來使用,可以根據(jù)實際需要高產(chǎn)量高效率地編寫
26、代碼。2. 面向?qū)ο蟮木帉懗绦虻姆椒▽Υa重用特別有效,方法的重載縮短了程序的長度。實驗名稱實驗 4 Java 異常處理實驗?zāi)康暮鸵?. 掌握異常的概念,以及如何定義、拋出和捕獲處理異常。實驗內(nèi)容3. 在實驗三中的超市、商品類中創(chuàng)建一個自定義異常類。 要求:1. 在定義商品類時,若銷售商品數(shù)量大于余額則作為異常處理。2. 自定義異常類名為 InsufficientFundsException 。 提示: 產(chǎn)生異常條件是某類商品銷售數(shù)量大于庫存額, 因此是否拋出異常要先判斷 該條件。 確定產(chǎn)生異常的方法,應(yīng)該在 sale 方法中產(chǎn)生異常 Insufficient Funds Exception
27、 。 處理異常安排在調(diào)用 sale 的時候,因此 sale 方法要聲明異常, 由上級方法 捕獲并處理。 要定義好自己的異常。主要儀器設(shè)備筆記本計算機實驗記錄(寫出實驗內(nèi)容中 3的程序代碼和運行結(jié)果 )( 可分欄或加頁 )3、 package shiyansi;import java.io.*;public class Four3 public static void main(String args) throws ExceptionSuppermacket a =new Suppermacket();int month;BufferedReader in = new BufferedRead
28、er( newInputStreamReader(System. in );String read = new String();for (;)System. out .println( 1 。增加商品種類 2 。盤點商品 3. 根據(jù)商品名查找4. 根據(jù)價格查找 5. 根據(jù)產(chǎn)地查找 6. 出售商品 7. 商品上架 8 。顯示商品信息 );System. out .println( Enter the month number: );month = (int )Double. parseDouble(in.readLine();switch (month)case 1:a.Add_Goods()
29、; break ;case 2:a.check(); break ;case 3:read = in.readLine();a.query(read); case 4:read = in.readLine();a.query(Float. case 5:read = in.readLine();a.query(read,1); case 6:read =break ; parseFloat (read);break ;breakin.readLine();a.good Integer. case 7:read =parseInt(read).Sale();break ;in.readLine(
30、);a.good Integer.parseInt(read).Add();break ;case 8:read =in.readLine();a.good Integer.parseInt(read).ShowMe();breakcase 9:read = in.readLine();a.delete(Integer. parseInt (read);breakclass Suppermacketpublic public publicGoods good =int Goods_num = -1int Add_Goods()InputStreamReader re = BufferedRea
31、der bre = System. out .println(String Name =new Goods200 ;throws IOExceptionnew InputStreamReader(System new BufferedReader (re); 輸入商品名字: );new String();in );Name = bre.readLine(); System. out .println( float Price = Float. System. out .println( String Produced = 輸入商品價格 );parseFloat (bre.readLine();
32、 輸入商品產(chǎn)地 );new String();Produced = bre.readLine();for ( int i=0;i= Goods_num ;i+) if ( good i.getname().equals(Name)= true ) good i.addcount(); return 1;this . Goods_num +;good Goods_num = new Goods();good Goods_num .setGoods(Name, Price, Produced); return 0;public void check()for ( int i=0;i= Goods_
33、num ;i+)System. out .println( good i.getname()+ +good i.getcount();public void query(String Name)for ( int i=0;i= Goods_num ;i+)if (good i.getname().equals(Name)= true )System. out .println( good i.getname()+ +good i.getcount();public void query( float Price )for ( int i=0;i= Goods_num ;i+)if ( good
34、 i.getprice()=Price)System. out .println(good i.getname()+ +good i.getcount();public void query(String Producer , int j )for ( int i=0;i= Goods_num ;i+)if ( good i.getproducer().equals(Producer)=true )System. out .println(good i.getcount();public void delete( int i) int k;for (k=i+1;k= Goods num ;k+
35、) this . good k-1 =good k; this . Goods_num -; class Goodsprivate StringName;private float Price ;private StringProduced ;private int count = 0;InsufficientFundsException problem = new InsufficientFundsException();public void Sale() throws InsufficientFundsException this . count -;if (this . count 0
36、) throw problem ; public void Add()this . count +; System. out .println( 商品已經(jīng)上架! );publicvoidShowMe()System.out.println( 商品名稱 +this. Name);System.out.println( 商品價格 +this. Price ); publicSystem.out.println( 商品產(chǎn)地 +this. Produced );voidsetGoods(String Name, floatPrice,String Produced)this . Name = Name
37、;this . Price = Price;this . Produced = Produced;public String getname()return this . Name;public float getprice()return this . Price ;public String getproducer() return this . Produced ; public void addcount() this . count +; public int getcount() return count ; class InsufficientFundsException ext
38、ends ExceptionInsufficientFundsException() super ( 余額不足!交易不成功! );遇到的問題和解決方法1. 拋出異常使用錯誤。 需要根據(jù)實際需要使用,區(qū)別 throw 和 throws 。實驗體會java 提供了異常類,區(qū)別 throw 和 throws ,自定義異常主要作用是區(qū)分異常發(fā)生位置,要 分別監(jiān)聽類與異常類。實驗名稱實驗 5 多線程編程實驗?zāi)康暮鸵?. 現(xiàn)成的概念、線程的生命周期。2. 多線程的編程:擴展 Thread 類與使用 Runnable 接口。3. 使用多線程機制實現(xiàn)動畫實驗內(nèi)容3. 創(chuàng)建簡單的程序 ThreeThread.
39、java ,該程序?qū)?chuàng)建三個線程,每個線程應(yīng)當(dāng)顯示 它所運行的時間(可以考慮使用 Date 類或 Calendar 類)。主要儀器設(shè)備筆記本計算機實驗記錄(寫出實驗內(nèi)容中 3的程序代碼和運行結(jié)果 )( 可分欄或加頁 )3、創(chuàng)建簡單的程序 ThreeThread.java ,該程序?qū)?chuàng)建三個線程,每個線程應(yīng)當(dāng)顯示它所運行的時間(可以考慮使用 Date 類或 Calendar 類)。package shiyanwu; import publicjava.util.Calendar;class Five3 public static void main(String args)t1=new Thre
40、ad1(t1t2=new Thread1(t2t3=new Thread1(t3Thread1Thread1Thread1);););t1.start();t2.start();t3.start();class Thread1 extends ThreadString name;public Thread1(String str)name = str;public void run()long time1,time2;time1 = Calendar. getInstance ().getTimeInMillis();System. out .println(name+開始 +time1);f
41、or ( int i=0;i44455555;i+)time2 = Calendar.getInstance ().getTimeInMillis();System. out .println(name+結(jié)束 +time2);System. out .println(name+ 運行完畢 ! 用時: +(time2-time1)+ ms );遇到的問題和解決方法使用 runnable 接口實現(xiàn)多線程編程時,由 runnable 接口實現(xiàn)的對象中沒有 start( ) 方法 來使線程啟動。解決方法:使用 thread 類的對象的構(gòu)造方法來與 runnable 類對象相接,然后用 thread 類
42、的對象調(diào)用 start( ) 方法。實驗體會通過實驗我了解到多線程可以把任務(wù)分塊執(zhí)行,分塊后可以同時進行而不用等待, 這樣效 率更高。實驗名稱實驗 6 圖形用戶界面編程實驗?zāi)康暮鸵笳莆瘴谋窘M件、按鈕和單、復(fù)選按鈕組件的使用;掌握列表的使用,鼠標(biāo)、鍵 盤事件的處理;掌握布局控制的方法。實驗內(nèi)容2. 完成下圖 GUI的布局管理,不需要實現(xiàn)功能。3. 試設(shè)計一窗口,內(nèi)含一個按鈕。開始運行時,按鈕顯示“ Click Me”字樣,當(dāng)按鈕按下時,按鈕顯示為“ Click Me Again ”字樣,再按一次,則按鈕顯示“ Click Me 字樣,依次循環(huán)。主要儀器設(shè)備 筆記本計算機實驗記錄(寫出實驗內(nèi)容中
43、 2,3的程序代碼和運行結(jié)果 )( 可分欄或加頁)2、 package shiyanliu;import javax.swing.*;import javax.swing.border.TitledBorder;public class Six2 public static void main(String vrgs)JFrame frm = new JFrame(); frm.setTitle( FileChooserDemo ); /frm.setBounds(50, 50,850, 480); /frm.setResizable(false);/FlowLayout flow = new
44、 FlowLayout(); frm.setLayout( null );JPanel one =new JPanel();JPanel two =new JPanel();JPanel three =new JPanel();JPanel four =new JPanel();JPanel five =new JPanel();one.setBounds(5, 15, 150, 270);one.setBorder(new TitledBorder( Dialog Type );two.setBounds(152,15 , 250, 270);two.setBorder(new Titled
45、Border( Filter Controls );three.setBounds(400,15 , 200, 270);three.setBorder(new TitledBorder( Display Options );four.setBounds(598, 15, 230, 270);four.setBorder(new TitledBorder( File and Directory Options );five.setBounds(5, 290, 821, 100);five.setBorder(new TitledBorder( );frm.add(one);frm.add(tw
46、o); frm.add(three); frm.add(four); frm.add(five);one.setLayout( two.setLayout( three.setLayout(null );null );null );four.setLayout(null );five.setLayout(null );JRadioButton jra = new JRadioButton(); JRadioButton jra1 =new JRadioButton();JRadioButton jra2 =new JRadioButton();jra.setText( Open ); jra.
47、setBounds(20, 40, 90,20);jra1.setText(Save );jra1.setBounds(20, 80, 75,20);jra2.setText(Custom );jra2.setBounds(20, 120, 75,20);JTextArea jt = jt.setLineWrap(new JTextArea(); true );jt.append( dialog1 );jt.setBounds(20, 185, 100, 50);one.add(jra);one.add(jra1);one.add(jra2);one.add(jt);JButton jb =
48、new JButton();jb.setText(Remove + +All Files + + Filter );jb.setBounds(15, 40, 215, 30);JButton jb1 = new JButton(); jb1.setText( Add + +All Files + + Filter ); jb1.setBounds(15, 100, 215, 30);JRadioButton jrab1 = new JRadioButton(); jrab1.setText( Default Filtering );jrab1.setBounds(20, 180, 150,20
49、);JRadioButton jrab2 =new JRadioButton();jrab2.setText( Add JPG and GIF Filter );jrab2.setBounds(20, 220, 170,20);new JRadioButton(); new JRadioButton(); new JRadioButton(); new JRadioButton(); new JRadioButton();two.add(jb); two.add(jb1); two.add(jrab1); two.add(jrab2);JCheckBox jck = new JCheckBox
50、( jck.setBounds(15, 40, 160, 20); JCheckBox jck1 = new JCheckBox( jck1.setBounds(15, 85, 160, 20);JCheckBox jck2 = new JCheckBox( jck2.setBounds(15, 130, 160, 20);JCheckBox jck3 = new JCheckBox( jck3.setBounds(15, 175, 160, 20);JCheckBox jck4 = new JCheckBox( jck4.setBounds(15, 219, 160, 20);three.add(jck); three.add(jck1); three.add(jck2); three.add(jck3); three.add(jck4);JRadioButton jrac1 =JRadioButton jrac2 =JRadioButton jrac3 =JRadioButton jrac4 =JRadioButton jrac5 =Show Hidden Files );Show Extensions );S
溫馨提示
- 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)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 沈陽理工大學(xué)《電工與電子技術(shù)》2021-2022學(xué)年期末試卷
- 海南省房屋買賣合同
- 合同成立時間有關(guān)的案例
- 2024年隔斷房屋租賃合同范本
- 專題04 賞析描寫或修辭手法-2022-2023學(xué)年小升初語文記敘文知識點銜接(部編版)
- 2024報社廣告合同范文
- 聚眾淫亂罪的迷思與匡正-以南京副教授換偶
- 2024木質(zhì)框廣告制作安裝合同
- 2024新委托代理合同樣本
- 沈陽城市學(xué)院《婚姻繼承法》2023-2024學(xué)年第一學(xué)期期末試卷
- 部編二年級上冊道德與法治全冊教案(共16課)
- 初中數(shù)學(xué)說題比賽1
- MOOC 創(chuàng)新與創(chuàng)業(yè)管理-南京師范大學(xué) 中國大學(xué)慕課答案
- 2024屆高考語文復(fù)習(xí)修改病句專項訓(xùn)練(含答案)
- 會計專業(yè)工作簡歷表(中級)
- 探析高校圖書館文創(chuàng)產(chǎn)品開發(fā)與推廣-以清華大學(xué)圖書館為例
- 修舊利廢實施方案
- 地下車庫頂板行車專項及方案
- (完整版)儲罐區(qū)防靜電對策措施
- 畢業(yè)設(shè)計(論文)基于單片機的智能水族箱控制系統(tǒng)魚缸
- 全文解讀2021年《防范和處置非法集資條例》PPT專題課件
評論
0/150
提交評論