Board logo

標題: 1217 try catch [打印本頁]

作者: b790113g    時間: 2011-12-10 11:43     標題: 1217 try catch

本帖最後由 b790113g 於 2011-12-17 10:19 編輯 : B0 y2 q  F9 x. d7 d7 o5 B

4 g0 _4 B) ~* S2 x; y9 `同上題
7 u! n% y; u8 Y; A( E0 k/ O3 ^, A7 W" u( x5 z
輸入兩個參數做數值運算4 q# ^1 q  I7 b' u/ W5 Y8 s

9 d# s) T8 X4 s若參數不足提示使用者
  1. public class d1217{

  2.     public static void main(String[] arg){
  3.         
  4.                 //if(arg.length<2) return ;
  5.      
  6.                 try{
  7.                         System.out.println(arg[0]+arg[1]);
  8.                 }catch(Exception e){
  9.                         System.out.println("參數不足"+e.toString());
  10.                 }
  11.         
  12.                
  13.     }

  14. }
複製代碼

作者: kim    時間: 2011-12-17 10:22

  1. public class d1217{
  2.     public static void main(String[] arg){
  3.             //if(arg.length<2)return ;
  4.                 try{
  5.                     System.out.println(arg[0]+arg[1]);
  6.                 }catch(Excrption e){
  7.                 System.out.println("參數不足"+e.toString());
  8.         }
  9. }
複製代碼

作者: eric5802    時間: 2011-12-17 10:23

public class d1217{9 T2 L  |3 x* H+ h

) A, p0 J0 l$ x2 M1 A- o% A    public static void main(String[] arg){7 M* l( j' r- Y

! |) s+ H* [/ N6 P% Z            //if(arg.length<2)return ;
$ X) y% L5 c3 g, E9 B
/ o/ Y- [) j2 q% g                try{
+ o1 |, K- e8 l# G, `7 m8 c4 `4 F2 Q1 N0 B0 o4 }* D
                    System.out.println(arg[0]+arg[1]);
! I+ _$ {, t% X% l# ^+ n4 ^/ l9 d( E/ z3 U
                }catch(Excrption e){
8 d1 P8 }5 I9 {) P3 N7 `0 H% {6 E) w% Z
                System.out.println("參數不足)"+e.toString());
$ W  ^8 Z* n: Q% H% a- ]5 s* d2 p* {3 I4 c
        }
2 L% O/ U& H! u. e9 K1 X4 L# k& d7 i# v& |4 b! C
}
作者: eric5802    時間: 2011-12-17 10:30

public class d1217{  n/ B, o) E+ N5 F# c& Y$ o
4 a0 t! U, t. ~: D
    public static void main(String[] arg){
0 w9 W5 H5 S1 K+ O5 ~$ I0 ?, z" e0 F" l. }% U. [
            //if(arg.length<2)return ;
5 u. _. i. B) e; [2 @) ]. f( ?% N8 f4 b6 V& B4 `3 m! g+ I& g) T
                try{6 v" H: S) `" \) \* S" G' J$ L
( m7 D7 _* ?6 f
                    System.out.println(arg[0]+arg[1]);! j; E' [* l* q/ h6 ^* T8 e2 R0 D
4 M: f8 x% \: T. s9 o7 Z9 [
                }catch(Excrption e){, M6 S) d- A' l

  K, A* @9 M3 ?6 D8 Q+ \                System.out.println("參數不足"+e.toString());
1 Y* y2 W0 E6 Q5 J3 Y% C
! J) R* l0 r; }4 b% w% d- k        }
3 \. i! r% |) J, K
) ~* B  R" F" j9 @$ h+ t4 R6 U" G) a}
作者: TOM    時間: 2011-12-24 09:41

  1. public class a1224
  2. {
  3.     public static void main(String[]arg)
  4.         {
  5.                 try
  6.                 {
  7.                 System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));
  8.                 }
  9.             cath(Exception e)
  10.                 {
  11.                 System.out.println("參數不足");
  12.                 }
  13.     }




  14. }
複製代碼

作者: lon    時間: 2011-12-24 09:49

  1. public class j3{
  2.         public static void main(String[] arg){
  3.                 try{
  4.                 System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));
  5.         }catch(Exception e){
  6.          System.out.println("參數不足");
  7.         }
  8.         }
  9. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2