public class TQC207 {4 w I! j% ~2 d; a
8 E' c" `9 ]# ?/ Z5 o7 j: [" S" t: r6 D# \3 e& \ J* Q3 x
public static void main(String[] args) {+ X! [, e2 ? t) P& Y
int sum=0, even=0, max=0, tmp=0;; s( l5 R ]% A3 Y4 g" z1 r/ x/ B
int[] nums = new int[args.length];
$ e7 V6 d7 X7 n7 I: p, ]5 s. _. k try{: A, v6 x/ b' H. U. q4 p
for(int i=0 ; i<args.length ; i++){
$ O, }0 ?6 Y% L8 B" L tmp= Integer.parseInt(args[i]);! ~" v# M( V# K( {
nums[i] = tmp;
3 w4 H% d0 Z% P& l' _: t sum += tmp;
% a8 a( v2 f8 i; |6 {9 Z3 u if((tmp%2)==0). U; E, L% n3 N k
even++;, \7 c' h- W& ]( c
max=Math.max(max,tmp);
2 q& Y8 |/ G3 v5 ~ ' Q& k# I4 {1 Y6 n: p5 n
}! b# E" b# _7 { ^- \: u
System.out.println("最大值"+"="+max);0 X8 x7 b) t2 f/ }2 I2 ~2 h2 u
System.out.println("偶數的個數"+"="+even);
- W! k3 H' \9 ~* J System.out.println("數字總和"+"="+sum);
9 _9 F! Z) H9 q. p" f. r- G% U. l, J: ~
/ g4 M! g( H+ L; y
}7 a2 u+ b& `- G. Q0 n% X
catch(Exception e){
x! C# s6 y& O/ y1 ] }
3 |5 L: ~4 m8 `( |) G8 @7 b }
" }) B9 @7 s; o, K, N} |