返回列表 發帖

1217 輸入兩數值相加

代入兩個參數...2 B+ Q9 n# j5 q9 a  u
7 S: g0 R- M% _4 H
並且相加、減、乘、除

  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{1 {( a: s6 i% ]& c7 |9 q
( d9 c- F5 `% M. m5 e5 T7 L
    public static void main(String[] arg){
" A" ~8 C5 [+ r4 }5 }6 ^: K/ P6 ?% V2 L
            //if(arg.length<2)return ;
+ o$ J$ D, R& s+ t) w. q  p% K0 f  s/ H
                try{
1 `. K( _: w) f1 w: O# ^+ T! F# \3 n2 ?, W, l: Y% }
                    System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));
4 W) C# }- c+ |+ {* z* X
7 o. _0 U2 a  ~# n8 G/ F                }catch(Excrption e){
, `& T. {8 U! F6 G5 V5 Y( [5 m& Z5 S
                System.out.println("參數不足啦"+e.toString());& l# `! b: h5 M8 w6 y

& V: c' H, N% m  T3 U# P" j        }( Y  V* f1 `* l2 J# l% H1 J

/ Y% @2 q1 w- I! O7 b# B: |9 N}
人平

TOP

返回列表