標題:
1217 try catch
[打印本頁]
作者:
b790113g
時間:
2011-12-10 11:43
標題:
1217 try catch
本帖最後由 b790113g 於 2011-12-17 10:19 編輯
: B0 y2 q F9 x. d7 d7 o5 B
4 g0 _4 B) ~* S2 x; y9 `
同上題
7 u! n% y; u8 Y
; A( E0 k/ O3 ^, A7 W" u( x5 z
輸入兩個參數做數值運算
4 q# ^1 q I7 b' u/ W5 Y8 s
9 d# s) T8 X4 s
若參數不足提示使用者
public class d1217{
public static void main(String[] arg){
//if(arg.length<2) return ;
try{
System.out.println(arg[0]+arg[1]);
}catch(Exception e){
System.out.println("參數不足"+e.toString());
}
}
}
複製代碼
作者:
kim
時間:
2011-12-17 10:22
public class d1217{
public static void main(String[] arg){
//if(arg.length<2)return ;
try{
System.out.println(arg[0]+arg[1]);
}catch(Excrption e){
System.out.println("參數不足"+e.toString());
}
}
複製代碼
作者:
eric5802
時間:
2011-12-17 10:23
public class d1217{
9 T2 L |3 x* H+ h
) A, p0 J0 l$ x2 M1 A- o% A
public static void main(String[] arg){
7 M* l( j' r- Y
! |) s+ H* [/ N6 P% Z
//if(arg.length<2)return ;
$ X) y% L5 c3 g, E9 B
/ o/ Y- [) j2 q% g
try{
+ o1 |, K- e8 l# G, `
7 m8 c4 `4 F2 Q1 N0 B0 o4 }* D
System.out.println(arg[0]+arg[1]);
! I+ _$ {, t% X% l# ^+ n
4 ^/ l9 d( E/ z3 U
}catch(Excrption e){
8 d1 P8 }5 I9 {) P3 N
7 `0 H% {6 E) w% Z
System.out.println("參數不足
)"+e.toString());
$ W ^8 Z* n: Q% H
% a- ]5 s* d2 p* {3 I4 c
}
2 L% O/ U& H! u. e
9 K1 X4 L# k& d7 i# v& |4 b! C
}
作者:
eric5802
時間:
2011-12-17 10:30
public class d1217{
n/ B, o) E+ N5 F# c& Y$ o
4 a0 t! U, t. ~: D
public static void main(String[] arg){
0 w9 W5 H5 S1 K+ O5 ~$ I0 ?, z" e
0 F" l. }% U. [
//if(arg.length<2)return ;
5 u. _. i. B) e; [2 @) ]
. f( ?% N8 f4 b6 V& B4 `3 m! g+ I& g) T
try{
6 v" H: S) `" \) \* S" G' J$ L
( m7 D7 _* ?6 f
System.out.println(arg[0]+arg[1]);
! j; E' [* l* q/ h6 ^* T8 e2 R0 D
4 M: f8 x% \: T. s9 o7 Z9 [
}catch(Excrption e){
, M6 S) d- A' l
K, A* @9 M3 ?6 D8 Q+ \
System.out.println("參數不足
"+e.toString());
1 Y* y2 W0 E6 Q5 J3 Y% C
! J) R* l0 r; }4 b% w% d- k
}
3 \. i! r% |) J, K
) ~* B R" F" j9 @$ h+ t4 R6 U" G) a
}
作者:
TOM
時間:
2011-12-24 09:41
public class a1224
{
public static void main(String[]arg)
{
try
{
System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));
}
cath(Exception e)
{
System.out.println("參數不足");
}
}
}
複製代碼
作者:
lon
時間:
2011-12-24 09:49
public class j3{
public static void main(String[] arg){
try{
System.out.println(Integer.parseInt(arg[0])+Integer.parseInt(arg[1]));
}catch(Exception e){
System.out.println("參數不足");
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2