返回列表 發帖

1217 輸入兩數值相加

代入兩個參數...
$ M' A( a  w9 _( l, q5 _- O7 n+ W" f: N& l9 _! @# e2 C( v# @' Z5 W
並且相加、減、乘、除

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

TOP

public class d1217{# w4 l8 `. s! i8 ~
, N: d& o& a  G
    public static void main(String[] arg){% q; L% }8 K* y7 f5 v$ N2 x+ W- ^

) V1 l' b4 Y7 `$ S            //if(arg.length<2)return ;
& p) W) e; d" I* h' l! @1 W" N  J8 _+ F8 x0 V! D9 D
                try{: U, X' p* y. u4 V
2 M7 A1 c( E% u4 i7 }. Q
                    System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));
" a2 |1 g  i+ F9 F& F* y! I6 e7 [$ P7 h3 C' i# \5 Y9 E
                }catch(Excrption e){' i" x! e0 _! n
# [1 |1 _% B1 _. i) q$ D
                System.out.println("參數不足啦"+e.toString());7 }" E. o; l3 Z: L5 n8 m9 N: C

3 B* w" j0 `, c2 h3 ?( W% A" @        }% G" v& I9 }1 J/ ~" f) R" o

+ \& [* B8 N6 C- ~5 G% H; z}
人平

TOP

返回列表