返回列表 發帖

1217 輸入兩數值相加

代入兩個參數...
  b1 _9 M4 x( Z8 K- T( X: U9 e" b. [2 P9 t9 S8 j5 C4 N% C& ?9 B4 ?* c
並且相加、減、乘、除

  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{7 J5 {6 h  e% m  t" O: {, k9 X8 i

0 J! t, L7 L1 l) t% v+ i) G    public static void main(String[] arg){
3 Q+ N$ H' g+ q3 f- I6 X1 P4 G6 N5 K2 ?  m- L
            //if(arg.length<2)return ;
# P$ c' i0 z1 a3 h3 y
. H4 K2 L0 h& V. `2 d5 d                try{
! }, h0 N# [% ]# ]  \: k4 z3 I) t/ p5 G
                    System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));
, Y& Q+ i! m, G! ]5 Z  y* [
1 r  Y6 o) G0 ?  L% A                }catch(Excrption e){
" k! j0 L; K( I8 X! @% F' o& ]6 e" w
                System.out.println("參數不足啦"+e.toString());% S/ C, h4 }9 t% ^* \# g" h

; _* ~2 b' K; s' Z( k        }
) A, h" W4 j# R4 s) B: t1 ]/ X8 ?0 L2 k0 D3 M' C6 a
}
人平

TOP

返回列表