返回列表 發帖

1217 try catch

本帖最後由 b790113g 於 2011-12-17 10:19 編輯
2 v, K7 Y# d$ \
* ^2 J$ W- }& `* H1 F同上題. s% W: D! ?! ]) R  K- i, g

  b/ G/ R. U- F6 j& v* }) z7 l輸入兩個參數做數值運算
/ X) C) D8 @, }7 B; ?& V# S7 L$ k& u2 s( g5 ]: F( g
若參數不足提示使用者
  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. }
複製代碼

  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. }
複製代碼
陳彥綸

TOP

  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. }
複製代碼
水桶小鄭,鯰魚

TOP

public class d1217{7 _! |. S" h3 R" `2 w( S
! p6 |! ?' q3 ~8 Q* ^
    public static void main(String[] arg){' l" H' n6 f9 t$ i

' E- p5 V" ]- H9 H( \4 L            //if(arg.length<2)return ;
- z6 s- L) |3 i+ y
' ^8 R& T6 `, [, B  X                try{
6 B- J# t* q& A- R8 N6 J$ ]5 \9 n9 ]) P2 x
                    System.out.println(arg[0]+arg[1]);
8 I. p+ a  ], m2 }( }, k+ `# s- b" m' E4 F$ A! c! T
                }catch(Excrption e){) F/ K4 J; V- A1 K
" K% f5 g! p6 ^6 F8 H
                System.out.println("參數不足"+e.toString());
: V$ Y, ]4 ^/ g3 A& D0 E4 p! J7 g9 \2 L; W
        }! B9 Y" c/ d4 z

2 Y1 @) U5 y: p9 x) ^8 n}
人平

TOP

public class d1217{
4 O2 f8 x' E) T1 [; q* Y2 b( }3 g8 |  [
    public static void main(String[] arg){
9 D" [9 a  d; ?; u# g2 G7 Q7 H" L# c
7 v; T1 ]- k) l& r            //if(arg.length<2)return ;) N# y3 }1 A) o$ h

2 E' t! N" V) c, \5 y9 d. b                try{4 L5 l0 d( a% k# k* K8 |) M5 w" u

# r! F& U7 W* p/ b% D                    System.out.println(arg[0]+arg[1]);7 p0 O4 W2 X0 `

# R2 A. b5 w% Z. X                }catch(Excrption e){
8 w8 T; G" x+ L: v( E8 k9 U
+ N  }% p9 l- B' m" ~                System.out.println("參數不足)"+e.toString());" c, C, t' o+ C2 p1 g1 Q$ |
  g* g; j. ]) B$ [% F) m. l
        }
0 l+ n% b7 U2 k$ P3 v: Y. r" p" [% O
}
人平

TOP

  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. }
複製代碼
★ 嘉凱~~☆

TOP

返回列表