返回列表 發帖

1217 try catch

本帖最後由 b790113g 於 2011-12-17 10:19 編輯 : {+ F: y* U: F% \* f$ m2 k( u

5 `$ F. u; N& C* E* d% [1 E  j同上題3 J% ^7 u4 D5 `3 h

. x3 Y3 @% F9 W+ w% R  g8 H輸入兩個參數做數值運算
6 Y5 T! x2 H* G8 p+ M' N$ P' j; P- {
若參數不足提示使用者
  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 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

public class d1217{
; M+ N0 s. U( e4 J: d$ m4 L% b' K& k. l+ y' o2 i
    public static void main(String[] arg){
0 N$ L+ @) e2 k" p1 i: b- J; X3 L0 X; \; S- V% @( ~7 X
            //if(arg.length<2)return ;
1 b/ N% c: G1 [- G: L
/ \  a% F! K7 I0 b                try{
8 p, {7 L0 d! @
: B* m5 s0 F% h: ~( R                    System.out.println(arg[0]+arg[1]);* m& c8 m" |. _1 ]5 _
& l% E* o# ]- \
                }catch(Excrption e){
7 @" n% i. }' Z. ?& w- w. l
" m3 y# S" l8 J: i- ~+ h                System.out.println("參數不足)"+e.toString());+ J( g8 j1 ^3 w$ t, J8 d# y

' u. R( `( I( h        }4 ^7 \" u3 a, x

' {7 z$ u; _( s( I, P}
人平

TOP

public class d1217{
" n4 r+ B+ o) f% y) s! _
1 m- A% t) q! y1 v: ^    public static void main(String[] arg){7 s* c- k* V- i* |
! @; H! y" ]2 S. e/ V: O6 l
            //if(arg.length<2)return ;
5 N8 `' ^7 [: q# |; N
5 ?& W4 |' W( Z) K                try{* y! o3 q% y* m$ S4 ?" a
* j, Y: J& Z, H1 @, b3 n1 F4 U7 Q5 |
                    System.out.println(arg[0]+arg[1]);+ r* Q7 a' ^3 f( H4 ~% V
: G9 h& o9 q+ c7 b+ J2 W
                }catch(Excrption e){+ Y- Z$ T5 U$ B& V3 _
: q4 D2 n3 g/ f7 |
                System.out.println("參數不足"+e.toString());
4 w  S& y# Q2 y% V' N8 d& `- w; _$ `1 I. D' o1 @' v
        }5 @3 k. D) d5 _1 D: ^
$ b/ T( w* g0 ^0 ?/ W
}
人平

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

  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

返回列表