返回列表 發帖

1217 輸入兩數值相加

代入兩個參數...
2 e9 |% t/ d2 P7 _6 r  n
# Z5 X2 {" P1 Q2 V+ @: l並且相加、減、乘、除

  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{' L8 L; T0 b: r0 \, ?/ l/ Y7 P

# c& C, b0 Z; a$ l& H% x' i+ @+ _    public static void main(String[] arg){
5 u# E4 e. H3 K9 J" ^3 K5 }# k# m5 a. u0 }0 e) B: O% M
            //if(arg.length<2)return ;( K: j. ~/ R# @# k
5 I, J) x! d3 T9 v7 G% A/ H/ M5 d
                try{- J# c- }6 f4 `. q

" n6 `6 f. Q' V( \" ?* P* ?2 g                    System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));1 T% r! I( b; L; _! r

0 y6 r6 p: d( H                }catch(Excrption e){
: X- c6 d( R! B8 F. k2 z3 g8 \& r, B: g: I8 l6 u
                System.out.println("參數不足啦"+e.toString());
, c4 ?7 B+ s$ n$ W0 ~% a6 S/ J/ A9 M
        }3 s8 y) D& p! P$ H
3 o1 `  E* F6 r. \6 B& Q: I9 b  }
}
人平

TOP

返回列表