返回列表 發帖

1217 輸入兩數值相加

代入兩個參數...( e* c/ L4 S$ m1 r- A

4 l+ M1 q* \0 J7 j並且相加、減、乘、除

  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{
" I0 A( _" X6 t0 \1 v6 S  G  g- f- _2 t! ^. u8 C% p; p" ]% l
    public static void main(String[] arg){
5 s' P/ O5 ]$ J0 w5 N5 ~6 M- U1 i" y: d6 W/ t3 P! S3 N0 `7 f
            //if(arg.length<2)return ;
+ g9 h' H; g) d! z( Q+ e, J& r
0 V! }9 R# e: W% m* m                try{3 b. i* P2 U( _' Q$ x2 }
3 S: H" B& b3 k) a7 h
                    System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));# f/ v6 t9 W; q/ ]3 Y) e; o
* p! d2 P8 o& r! S
                }catch(Excrption e){' r. u! ?  E4 h8 I

- O! L6 N5 W0 G7 C! P' [, t! V1 ]                System.out.println("參數不足啦"+e.toString());8 ?0 n0 Q+ q3 J1 S5 d
7 _1 [6 ?7 E. S) {  ?
        }% h8 u( L( R$ H

* E: f( w( ]: S9 U0 J}
人平

TOP

返回列表