返回列表 發帖

1217 輸入兩數值相加

代入兩個參數...  {1 E5 a0 h7 F1 j4 X$ x6 V
, X; X4 u; U) p
並且相加、減、乘、除

public class d1217{
! n" i! Z' @" ?) |
7 z; |5 q' j8 C$ N5 S( Y, m9 {    public static void main(String[] arg){7 `  W& e% ?2 ]' {
, Z6 ^0 [; @" S1 G) I
            //if(arg.length<2)return ;3 S* H3 [5 v8 I. U

$ [: }  R! W7 M9 a% ?* t                try{
% p& N9 W% p8 Z- A$ j9 C0 q6 U# m4 o
                    System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));- p* E9 l" e* y; V1 I& {

0 S3 |) {, O( J" K  Q  m( e2 |& S                }catch(Excrption e){
8 }* b0 d* d! b0 L& |, d- ^% Q" L2 v" Y
                System.out.println("參數不足啦"+e.toString());
+ ~& t) U# x8 K& \5 \% S3 G3 B
, Q8 _! |& m" ^% H* _5 ?        }
: m' [0 }# o" S% l8 q- P7 |# [( [4 N. c- s4 f# `# x  p' u
}
人平

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

返回列表