返回列表 發帖

1217 try catch

本帖最後由 b790113g 於 2011-12-17 10:19 編輯 , [8 s" b, O  H, n, X/ n  G
4 J! f* n4 A4 W0 B% f
同上題% |! S6 M0 @- J, X  t" S3 g- X
9 c1 w! O' {/ C5 V0 r
輸入兩個參數做數值運算8 P2 s! h( Z( }. k/ T: T7 A2 l

3 q4 N0 }) T5 Z! C* }; Y若參數不足提示使用者
  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{! f7 Q) E& Z( A: z: o- d# o; D

! \0 Y" L5 H7 i1 |    public static void main(String[] arg){- f6 L- I% C) a8 L, h2 `
: i3 w1 q; Z+ J( ^
            //if(arg.length<2)return ;
- p% h/ Q, U- j( E
7 Q! u" S/ v- e) C, O                try{5 z6 X5 J* U, ?. ]
% h, {( C7 R# a% H& z1 r5 g
                    System.out.println(arg[0]+arg[1]);4 g# F" Z8 S& X: E" w% y

6 W5 y, D% R6 Y( N                }catch(Excrption e){
! K+ Z' t8 E3 u$ ], o$ r
2 A) ]3 d6 s2 ]                System.out.println("參數不足)"+e.toString());
5 M- D3 Y2 j/ O! H5 j& m1 Y1 ?9 }" Q0 N6 Z4 J/ B
        }4 m$ I; W* V- j+ S- E  ^

8 ~! P% {. t3 s6 y, a, g# N}
人平

TOP

public class d1217{
; r1 T) F6 ?$ z9 @$ C3 S9 C" e' K! h
    public static void main(String[] arg){
6 u5 H% M) P( ?! q" q
& q" O1 M) Q4 u3 `6 ^+ Z6 U            //if(arg.length<2)return ;
' t' |. f# L# M
4 q) d. N* O5 o% r                try{
  Y1 s5 @8 h* G+ G
' U, [4 u1 c5 C                    System.out.println(arg[0]+arg[1]);
4 V' Y5 _6 C  j, L% u5 b0 y4 U& I7 M7 K. N* C  V: y7 {
                }catch(Excrption e){' ~5 S+ \0 d" j5 f5 t+ z- p2 R0 O

" y- P; B; Y  a' F! q                System.out.println("參數不足"+e.toString());
1 E. W' v* c! P+ ^& u5 l9 g  A/ B& Z& ^  ^; F8 r- ~% N. l# D& O
        }
& h# B5 j3 e* W% x1 U9 Q) r- w% f
- P- [2 L+ x+ t. ^}
人平

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

返回列表