返回列表 發帖

1217 輸入兩數值相加

代入兩個參數..." w% c$ E  K& l2 _8 h  {9 ~

7 I8 m8 M, l0 l# N. p5 |' 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{: e* F/ J# l* h0 k

; q# o+ ~6 ~+ N  F% o5 V    public static void main(String[] arg){5 R# n7 a. ]6 d

) W6 j: o) V2 e4 B) f            //if(arg.length<2)return ;& d2 t$ G; U, }$ ~. E) P3 |+ |
+ m, d3 f/ j# r. k2 z
                try{
4 _& s2 @9 ]" o$ N
, p. w. l5 u/ F  T% W, i/ D% g                    System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));! z. G4 U3 S* l5 A- W5 {1 H

0 S2 Z7 o- R4 F( G; y$ n                }catch(Excrption e){. h6 ]$ D3 W# `: P. {
5 m. A( R, L$ o, Y9 A
                System.out.println("參數不足啦"+e.toString());
+ n8 G' q* d6 o: ^- C' y$ r* H! }& Q/ ?( X# K
        }
5 g3 g- @9 M: B. v
8 H* E  f9 w7 l5 |, h; a}
人平

TOP

返回列表