


版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領
文檔簡介
1、習題 11. James Gosling2. 需 3個步驟 :1) 用文本編輯器編寫源文件。2) 使用 javac 編譯源文件 ,得到字節(jié)碼文件。3) 使用解釋器運行程序。3. set path=D:jdkbin;set classpath=D:jdkjrelibrt 、jar; 、;4. B)javac、 exe5. java 與 class6. D) public static void main (String args )習題 21. B) int_long, D) $Boy262.【代碼 1】 , 【代碼 3】就是錯誤的3. float常量必須用F或f為后綴。double常量用D或d
2、為后綴,但允許省略后綴。4.public class E public static void main(String args) System、 out 、println(int)'思');System、 out 、println(int)'故');System、 out 、println(int)'鄉(xiāng)');習題31.110if-else 語句書寫的不夠規(guī)范?2 、 不正正歪 !3.public class Xiti3 void giveMess(int number) if(number=9|number=131|number=12) Sys
3、tem、out 、println(number+" 就是三等獎 ");else if(number=209|number=596|number=27) System、 out、 println(number+" 就是二等獎 ");else if(number=875|number=316|number=59) System、 out、 println(number+" 就是一等獎 ");elseSystem、 out、 println(" 未中獎 ");4.public class Xiti4 public sta
4、tic void main (String args ) char cStart='a ',cEnd='刃'for(char c=cStart;c<=cEnd;c+)System、out 、printf("%2c",c); System、 out、 println();for(char c=cStart;c<=cEnd;c+)System、out 、printf("%2c",(c+32);5.public class Xiti5 public static void main(String args) doub
5、le sum = 0,item = 1;int i = 1,n = 20;while(i<=n) sum = sum+item; i = i+1; item = item*i;System、 out、 println("sum="+sum);6.public class Xiti6 public static void main(String args) int 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)System、out、printl
6、n(" 完數(shù) :"+i);public class Xiti7 public static void main(String args) int n=1,i=1,jiecheng=1;long sum=0;while(true) jiecheng=1;for(i=1;i<=n;i+) jiecheng=jiecheng*i; sum=sum+jiecheng; if(sum>9999) break;n+;System、 out、 println(" 滿足條件的最大整數(shù) :"+(n-1);習題41. 用類創(chuàng)建對象時。2. 一個類中可以有多個方法
7、具有相同的名字 , 但這些方法的參數(shù)必須不同 , 即或者就是參數(shù) 的個數(shù)不同 , 或者就是參數(shù)的類型不同。可以。3. 可以 。 不可以。4. 不可以。5. 一個類通過使用 new 運算符可以創(chuàng)建多個不同的對象 ,不同的對象的實例變量將被分配不 同的內(nèi)存空間。所有對象的類變量都分配給相同的一處內(nèi)存,對象共享類變量。6. CD。7. 【代碼 1】【代碼 4】。8. sum=-100 。9、27。10. 100 與 20、 0。習 題 51. 如果子類與父類在同一個包中 ,那么 ,子類自然地繼承了其父類中不就是 private 的成員變量 作為自己的成員變量 ,并且也自然地繼承了父類中不就是priv
8、ate 的方法作為自己的方法 , 繼承的成員或方法的訪問權限保持不變。當子類與父類不在同一個包中時,父類中的 private 與友好訪問權限的成員變量不會被子類繼承 , 也就就是說 , 子類只繼承父類中的protected 與public 訪問權限的成員變量作為子類的成員變量; 同樣 ,子類只繼承父類中的protected 與public 訪問權限的方法作為子類的方法。 如果所聲明的成員的變量的名字與從父類繼承來的 成員變量的名字相同 (聲明的類型可以不同),在這種情況下 ,子類就會隱藏掉所繼承的成員變量。2. 不可以。3. abstract 類。4. A類就是B類的父類,當用子類創(chuàng)建一個對象
9、b,并把這個對象b的引用放到父類的對象a 中時,稱a就是b的上轉(zhuǎn)型對象。5. AD 。6. 15、 08、 0 。7. 98、 012。習題61. 接口中能聲明變量不?2. 接口中能定義非抽象方法不?3. 什么叫接口的回調(diào)?4. 請說出 E 類中 System、 out、 println 的輸出結(jié)果。interface A double f(double x,double y);class B implements A public double f(double x,double y) return x *y;int g(int a,int b) return a+b;public clas
10、s E public static void main(String args) A a=new B();System、 out 、 println(a、 f(3,5);B b=(B)a;System、 out 、 println(b、 g(3,5);5. 請說出 E 類中 System、 out、 println 的輸出結(jié)果。interface Com int add(int a,int b);abstract class A abstract int add(int a,int b);class B extends A implements Com public int add(int a
11、,int b) return a+b;public class E public static void main(String args) B b =new B();Com com = b;System、 out 、println(com、add(12,6);A a =b;System、 out 、println(a、 add(10,5);習題71. 一維數(shù)組名、 length2. 二維數(shù)組名、 length3. false,true,false,3,4 、4, 8、8。4. Bird,car習 題 81. 有效。2. 可以3. 不可以4. 大家好 ,祝工作順利!5.96乘數(shù)超過 99習題9
12、1. (A)(B)(D)2. Love:Game 。3. 15abc 我們。4.13579。5.9javaHello 。6.public class E public static void main (String args ) String s1,s2,t1="ABCDabcd"s1=t1、 toUpperCase();s2=t1、 toLowerCase();System、 out、 println(s1);System、 out、 println(s2);String s3=s1、 concat(s2);System、 out、 println(s3);7、publ
13、ic class E public static void main (String args ) String s="ABCDabcd" char cStart=s、 charAt(0);char cEnd = s、 charAt(s 、 length()-1);System、 out、 println(cStart);System、 out、 println(cEnd);8、import java 、util 、*;public class E public static void main(String args) Scanner read=new Scanner(S
14、ystem、 in); CalendarBean cb=new CalendarBean(); int year=2000,month=1;System、 out、 println(" 輸入年 :"); year=read、nextInt();System、 out、 println(" 輸入月 :"); month=read、 nextInt();cb、 setYear(year);cb、 setMonth(month);String a= cb 、getCalendar();/ 返回號碼的一維數(shù)組 char str=" 日一二三四五六 &q
15、uot; 、toCharArray(); for(char c:str) System、 out、 printf("%3c",c); for(int i=0;i<a 、 length;i+) /輸出數(shù)組 aif(i%7=0)System、 out、 println(""); / 換行 System、 out、 printf("%4s",ai);class CalendarBean String day;int year=0,month=0;public void setYear(int year) this、 year=year
16、;public void setMonth(int month) this、 month=month;public String getCalendar() String a=new String42;Calendar rili=Calendar 、 getInstance();rili 、 set(year,month-1,1);int weekDay=rili 、 get(Calendar、 DAY_OF_WEEK)-1; / 計算出 1 號的星期 int day=0;if(month=1|month=3|month=5|month=7|month=8|month=10|month=12)
17、 day=31;if(month=4|month=6|month=9|month=11)day=30; if(month=2) if(year%4=0)&&(year%100!=0)|(year%400=0)day=29;elseday=28;for(int i=0;i<weekDay;i+)ai=" "for(int i=weekDay,n=1;i<weekDay+day;i+) ai=String 、 valueOf(n) ;n+;for(int i=weekDay+day;i<a 、 length;i+)ai=" "
18、;return a;9、import java 、util 、*;public class E public static void main (String args ) Scanner read=new Scanner(System、 in);int year1,month1,day1,year2,month2,day2;System、 out、println(" 輸入第一個日期的年、月、日(用空格或回車分隔 ):");year1=read、 nextInt();month1=read、nextInt();day1=read、 nextInt();System、 out
19、、println(" 輸入第二個日期的年月日(用空格或回車分隔 ):");year2=read、 nextInt();month2=read、nextInt();day2=read、 nextInt();Calendar calendar=Calendar、 getInstance(); calendar、 set(year1,month1-1,day1); long timeYear1=calendar 、getTimeInMillis(); calendar、 set(year2,month2-1,day2); long timeYear2=calendar 、getT
20、imeInMillis(); long 相隔天數(shù) =Math 、 abs(timeYear1-timeYear2)/(1000*60*60*24);System、out、println(""+year1+"年"+month1+"月"+day1+"日與"+year2+"年"+month2+"月"+day2+"日相隔"+ 相隔天數(shù) +"天");10、import java 、 util 、 *;public class E public s
21、tatic void main (String args ) double a=0,b=0,c=0;a=12;b=24;c=Math 、 asin(0、 56);System、 out、 println(c);c=Math 、 cos(3、 14);System、 out、 println(c);c=Math 、exp(1);System、 out、 println(c);c=Math 、log(8);System、 out、 println(c);11. public class E public static void main (String args ) String str = &q
22、uot;ab123you 您就是誰? " String regex = "D+" str = str、 replaceAll(regex,""); System、 out、 println(str);12. import java 、util 、*;public class E public static void main(String args) String cost = "數(shù)學 87 分,物理 76 分,英語 96 分" Scanner scanner = new Scanner(cost);scanner、useD
23、elimiter("F0123456789、+"); double sum=0;int count =0;while(scanner、 hasNext()try double score = scanner、 nextDouble(); count+; sum = sum+score;System、 out、 println(score);catch(InputMismatchException exp) String t = scanner、 next();System out、println("總分:"+sum+"分");Syst
24、em、 out、 println(" 平均分 :"+sum/count+" 分");習 題 101. 使用。2. 按字節(jié)讀取文件 ,按字符讀取文件。3. 不可以。,那么用4. 使用對象流寫入或讀入對象時 ,要保證對象就是序列化的。5. 使用對象流很容易得獲取一個序列化對象的克隆,只需將該對象寫入到對象輸出流對象輸入流讀回的對象一定就是原對象的一個克隆。6.import java 、io 、*;public class E public static void main(String args) File("E 、 java");try
25、 RandomAccess 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)System、out、 print(char)c); else m=m-1;random、 seek(m); byte cc=new byte2; random、 readFully(cc); System、out、print(ne
26、w String(cc);catch(Exception exp)7、import java 、 io、 *;public class E public static void main(String args ) File("E 、 java");File("temp 、 txt");try inOne=new (file);BufferedReader inTwo= new BufferedReader(inOne); to (tempFile);BufferedWriter out= new BufferedWriter(tofile);Strin
27、g s=null;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(); to();catch(IOException e)8、屬于上機操作題 ,解答略。9、import java 、 io、 *;import java 、util 、*; public class E public static void mai
28、n(String args) = new File("a 、 txt"); Scanner sc = null; double sum=0; int count = 0;try sc = new Scanner(file);sc、useDelimiter("F0123456789、+"); while(sc 、 hasNext()try double price = sc、 nextDouble(); count+; sum = sum+price;System、 out、 println(price);catch(InputMismatchExcept
29、ion exp) String t = sc、 next(); System、 out、 println(" 平均價格 :"+sum/count);catch(Exception exp) System、 out、 println(exp);習 題 111. derby、jar,derbynet、jar 以及 derbyclient、jar 復制到 Java運行環(huán)境的擴展中。2、import java 、 sql、 *;import java 、 util 、 *;public class E public static void main(String args) Que
30、ry query=new Query();query 、 setDatabaseName("D:/2000/shop");query 、 setSQL("SELECT * FROM goods");Scanner read=new Scanner(System、 in);System、 out、 print(" 輸入數(shù)據(jù)庫名或絕對路徑 :");String dataSource = read、 nextLine();System、 out、 print(" 輸入表名 :");String tableName = r
31、ead、 nextLine();query、 setDatabaseName (dataSource);query、 setSQL("SELECT * FROM "+tableName);query、inputQueryResult();class Query String databaseName="" / 數(shù)據(jù)庫名String SQL; /SQL 語句public Query() try Class、forName("org 、 apache 、derby 、jdbc 、 EmbeddedDriver");catch(Except
32、ion e) System 、 out 、print(e);public void setDatabaseName(String s) databaseName=s、 trim();public void setSQL(String SQL) this、 SQL=SQL、 trim();public void outQueryResult() Connection con;Statement sql;ResultSet rs;try String uri="jdbc:derby:"+databaseName+"create=true"con=Driver
33、Manager 、 getConnection(uri);sql=con、 createStatement();rs=sql、 executeQuery(SQL);ResultSetMetaData metaData = rs、 getMetaData();/ 結(jié)果集的元數(shù)據(jù)對象int columnCount = metaData、 getColumnCount(); / 結(jié)果集的總列數(shù)for(int i=1;i<=columnCount;i+)System、out 、print(metaData、 getColumnName(i)+" |"); / 輸出字段名Sys
34、tem、out 、 println();while(rs、 next() / 輸出結(jié)果集中的記錄 , 即行for(int i=1;i<=columnCount;i+)System 、 out 、 print(rs、 getString(i)+"|");System、 out 、 println();catch(SQLException e) System、out 、 println("請輸入正確的表名 "+e);3、import java、 sql、*;import java 、util 、*;public class E public stati
35、c void main(String args) Query query = new Query();String databaseName = "shop"String tableName = "goods"query、 setDatabaseName(databaseName);String name = ""Scanner read=new Scanner(System、 in);System、 out、 print(" 商品名 :");name = read、 nextLine();String str=&
36、quot;'%"+name+"%'"String SQL = "SELECT * FROM goods WHERE name LIKE "+str; query、 setSQL(SQL);System、out、println(tableName+"表中商品名就是"+name+"的記錄"); query、 inputQueryResult();class Query String databaseName=""/ 數(shù)據(jù)庫名String SQL;/SQL 語句public
37、Query() try Class、 forName("org 、 apache、 derby、 jdbc、 EmbeddedDriver");catch(Exception e) System、 out、 print(e);public void setDatabaseName(String s) databaseName=s、 trim();public void setSQL(String SQL) this、 SQL=SQL 、 trim();public void outQueryResult() Connection con;Statement sql;Resu
38、ltSet rs;try String uri="jdbc:derby:"+databaseName+"create=true" con=DriverManager 、 getConnection(uri);sql=con、 createStatement();rs=sql、 executeQuery(SQL);ResultSetMetaData metaData = rs、 getMetaData() ;/結(jié)果集的元數(shù)據(jù)對象 int columnCount = metaData 、 getColumnCount(); / 結(jié)果集的總列數(shù) for(int
39、 i=1;i<=columnCount;i+)System、out、print(metaData、getColumnName(i)+"|"); /輸出字段名System、out 、println();while(rs 、 next() /輸出結(jié)果集中的記錄 ,即行for(int i=1;i<=columnCount;i+)System、 out、 print(rs 、getString(i)+"|");System、 out、 println();catch(SQLException e) System、out 、println("
40、 請輸入正確的表名 "+e);4. 將例子 5 中的代碼 :String SQL = "SELECT * FROM "+tableName+" ORDER BY name"更改為 :String SQL = "SELECT * FROM "+tableName+" ORDER BY madeTime"可達題目要求。5. 使用預處理語句不僅減輕了數(shù)據(jù)庫的負擔,而且也提高了訪問數(shù)據(jù)庫的速度。6. 事務由一組 SQL 語句組成 ,所謂事務處理就是指 :應用程序保證事務中的 SQL 語句要么全 部都執(zhí)行 ,要么一
41、個都不執(zhí)行。步驟 :(1) 使用 setAutoCommit(boolean autoCommit) 方法con 對象首先調(diào)用 setAutoCommit(boolean autoCommit) 方法 ,將參數(shù) autoCommit 取值 false 來關閉默認設置 :con、 setAutoCommit(false);(2) 使用 commit() 方法。 con 調(diào)用 commit() 方法就就是讓事務中的 SQL 語句全部生效。(3) 使用 rollback() 方法。 con 調(diào)用 rollback() 方法撤消事務中成功執(zhí)行過的 SQL 語句對數(shù)據(jù) 庫數(shù)據(jù)所做的更新、 插入或刪除操作
42、 ,即撤消引起數(shù)據(jù)發(fā)生變化的 SQL 語句操作 ,將數(shù)據(jù)庫中 的數(shù)據(jù)恢復到 commi() 方法執(zhí)行之前的狀態(tài)。7. 解答略。習 題 121. LinkedList 使用鏈式存儲結(jié)構 ,ArrayList 使用順序存儲結(jié)構。2.83.ABCD4. 用 HashMap<K,V>5.import java 、util 、 *;class RectKey implements Comparable double key=0;RectKey(double d) key=d;public int compareTo(Object b) RectKey t=(RectKey)b;if(this
43、 、key-t 、key)=0) return -1;elsereturn (int)(this 、key-t 、key)*1000);class Rectdouble width,height;Rect(double width,double height) this、height=height; this、width=width;public double getArea() return width*height;public double getLength() return 2*(width+height);public class E public static void main
44、(String args ) TreeMap<RectKey,Rect> treemap= new TreeMap<RectKey,Rect>(); double w=1,2,4,8,16,20,120,30,90,102 、 9; double h=21,92,43,18,1 、6,2、 2,12,3,90,765;Rect rect=new Rect10;for(int k=0;k<rect 、 length;k+) rectk=new Rect(wk,hk);RectKey key=new RectKey10 ;for(int k=0;k<key 、
45、length;k+) keyk=new RectKey(rectk 、 getArea();for(int k=0;k<rect 、 length;k+) treemap、 put(keyk,rectk);int number=treemap、 size();Collection<Rect> collection=treemap 、 values();Iterator<Rect> iter=collection 、 iterator(); while(iter 、 hasNext() Rect r=iter 、 next();System、 out、 printl
46、n(" 面積 :"+r 、 getArea();treemap、clear();for(int k=0;k<key 、 length;k+) keyk=new RectKey(rectk 、 getLength();for(int k=0;k<rect 、 length;k+) treemap、 put(keyk,rectk);number=treemap、size();collection=treemap 、 values();iter=collection 、 iterator();while(iter 、 hasNext() Rect r=iter 、 n
47、ext();System、 out、 println(" 周長 :"+r 、getLength();習 題 131.4 種狀態(tài) :新建、運行、中斷與死亡。2. 有 4種原因的中斷 :(1)JVM 將 CPU 資源從當前線程切換給其她線程,使本線程讓出 CPU 的使用權處于中斷狀態(tài)。 (2)線程使用 CPU 資源期間 ,執(zhí)行了 sleep(int millsecond) 方法 ,使當前線 程進入休眠狀態(tài)。(3)線程使用CPU資源期間,執(zhí)行了 wait()方法,使得當前線程進入等待狀態(tài)。(4) 線程使用 CPU 資源期間 ,執(zhí)行某個操作進入阻塞狀態(tài),比如執(zhí)行讀 /寫操作引起阻塞
48、。3死亡狀態(tài),不能再調(diào)用start()方法。4. 新建與死亡狀態(tài)。5兩種方法:用Thread類或其子類。6. 使用 setPrority(int grade)方法。7. Java使我們可以創(chuàng)建多個線程,在處理多線程問題時,我們必須注意這樣一個問題:當兩個或 多個線程同時訪問同一個變量 ,并且一個線程需要修改這個變量。我們應對這樣的問題作出處理 ,否則可能發(fā)生混亂。8. 當一個線程使用的同步方法中用到某個變量,而此變量又需要其它線程修改后才能符合本線程的需要 ,那么可以在同步方法中使用 wait() 方法。使用 wait 方法可以中斷方法的執(zhí)行 ,使 本線程等待 ,暫時讓出 CPU 的使用權 ,
49、并允許其它線程使用這個同步方法。其它線程如果在使用這個同步方法時不需要等待 ,那么它使用完這個同步方法的同時,應當用 notifyAll() 方法通知所有的由于使用這個同步方法而處于等待的線程結(jié)束等待。9. 不合理。10“. 吵醒”休眠的線程。 一個占有 CPU 資源的線程可以讓休眠的線程調(diào)用 interrupt 方法“吵 醒”自己 ,即導致休眠的線程發(fā)生 InterruptedException 異常,從而結(jié)束休眠 ,重新排隊等待 CPU 資源。11、 public class E public static void main(String args) Cinema a=new Cinem
50、a();a、 zhang、start();a、 sun、start();a、 zhao、 start();class TicketSeller / 負責賣票的類。 int fiveNumber=3,tenNumber=0,twentyNumber=0;public synchronized void sellTicket(int receiveMoney) if(receiveMoney=5) fiveNumber=fiveNumber+1;System、 out、 println(Thread 、 currentThread() 、 getName()+"給我 5 元錢 ,這就是您
51、的 1 張入場卷 ");else if(receiveMoney=10) while(fiveNumber<1) try System、out、println(Thread 、currentThread()、getName()+" 靠邊等 ");wait();System、out、println(Thread、currentThread()、getName()+"結(jié)束等待"); catch(InterruptedException e) fiveNumber=fiveNumber-1;tenNumber=tenNumber+1;Syste
52、m、 out、 println(Thread 、 currentThread()、 getName()+" 給我 10 元錢 ,找您 5 元, 這就是您的 1 張入場卷 ");else if(receiveMoney=20) while(fiveNumber<1|tenNumber<1) try System> out、println(Thread、currentThread()、getName()+"靠邊等");wait();System、out、println(Thread、currentThread()、getName()+&qu
53、ot;結(jié)束等待"); catch(InterruptedException e) fiveNumber=fiveNumber-1;tenNumber=tenNumber-1;twentyNumber=twentyNumber+1;System、 out、 println(Thread 、 currentThread()、 getName()+"給 20元錢,找您一張 5元與一張 10元,這就是您的 1張入場卷 ");notifyAll();class Cinema implements Runnable Thread zhang,sun,zhao;TicketSe
54、ller seller;Cinema() zhang=new Thread(this); sun=new Thread(this); zhao=new Thread(this);zhang、setName(”張小有"); sun、setName("孫大名"); zhao setName("趙中堂");seller=new TicketSeller();public void run() if(Thread 、 currentThread()=zhang)seller、 sellTicket(20);else if(Thread 、 curren
55、tThread()=sun)seller、 sellTicket(10);else if(Thread 、 currentThread()=zhao) seller 、 sellTicket(5);12、public class E public static void main(String args) ClassRoom room6501 = new ClassRoom(); ro o m6501 、 student1、 start(); ro o m6501 、 student2、 start();try Thread 、 sleep(1000); catch(Exception exp
56、) ro o m6501 、 teacher、 start();class ClassRoom implements Runnable Thread student1,student2,teacher;ClassRoom() teacher = new Thread(this); student1 = new Thread(this); student2 = new Thread(this);teacher、setName(”王教授");studentl、setName("張三");student2、setName("李四");public v
57、oid run() if(Thread、 currentThread()=student1) try System out、println(student1、getName()+"正在睡覺,不聽課"); Thread、 sleep(1000*60*10);catch(InterruptedException e) System out、println(student1、getName()+"被老師叫醒了 ”);System、out、println(student1、getName()+"開始聽課");student2、 interrupt();/吵醒 student2else if(Thread、 cu
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 施工履約擔保合同
- 斷橋鋁門窗施工合同
- 學校采購協(xié)議書和采購合同
- 委托銷售煤炭居間合同
- 合同補充協(xié)議說明
- 全新合同中的擔保條款
- 手舊設備買賣合同書
- 門衛(wèi)聘用合同集合
- 建筑工程施工大清包合同
- 房屋拆遷評估委托合同
- 中藥房中藥斗譜編排規(guī)則和斗譜圖
- TY/T 1105-2023群眾體育賽事活動安全評估技術導則
- 半自動打包機維修手冊
- 中央空調(diào)氟系統(tǒng)施工組織方案
- 侵權責任法各章課件
- 注冊建造師考前培訓項目管理丁士昭
- 茶葉委托加工協(xié)議書
- 職業(yè)健康職業(yè)衛(wèi)生檢查和處理記錄
- 談判:如何在博弈中獲得更多
- 社會學知識競賽(58道含答案)
- 深化安全風險管理的“四維度量”
評論
0/150
提交評論