返回列表 發帖

1217 輸入兩數值相加

代入兩個參數...6 U7 L# ?; a. d. I
* V: L9 t3 {6 U, u- n
並且相加、減、乘、除

public class d1217{& o( G( B9 A# `+ x9 h

# b% d! x* B3 A5 R' p. Y    public static void main(String[] arg){
. R: M. {6 {$ N) Z
/ Y& S( L1 j6 V$ F6 p            //if(arg.length<2)return ;
5 u% y" W( Q. x6 d. U. ?+ A) f' u" o* a# k: K
                try{7 r9 F8 O( V8 `$ _( J: b7 u

4 H# e% l' W5 n5 ^8 O                    System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));
' {' o# R, Y, d" y& x
2 `! M6 z% Q/ s! o3 Q                }catch(Excrption e){. I3 Y8 ^1 b1 |* M
! g7 S( y$ @) `4 Z& N; {
                System.out.println("參數不足啦"+e.toString());/ s8 _# ?- {$ A2 D! P0 O

& C/ r; I. i* b# Q. o2 v        }
+ j' g% c, Y  n2 [; V! |# H0 l
}
人平

TOP

  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

返回列表