public class TQC207 {6 _% }9 i$ Z" H6 J
; {5 ]+ V* B9 Q; b, _3 `6 b5 j H3 P
public static void main(String[] args) {
) d* |, b. r; c4 |" Q* u) u+ C int sum=0, even=0, max=0, tmp=0;
+ q/ r; o! C* r) X6 c# ^ l% N int[] nums = new int[args.length];
, o1 S+ _ l1 n" Q( D. w3 H i try{
$ A# s' b g; h8 N3 C$ f. N4 y' X for(int i=0 ; i<args.length ; i++){; Q; k( U, B5 k+ M
tmp= Integer.parseInt(args[i]);
, W% m2 N: y9 N' }0 ^! a1 ? nums[i] = tmp;
" A. K; j [8 T" E sum += tmp;
: `' i+ }" i$ _( A% {( U if((tmp%2)==0)8 K& O9 {! Z6 F# v
even++;
7 E1 V. U) m I1 f' y max=Math.max(max,tmp);8 I. m. D S8 e9 S+ F9 C! C
* z0 p+ ~3 y- o! c" y
}1 K% C3 ]3 j/ G& F
System.out.println("最大值"+"="+max);' J) H3 y3 l* t% [. S/ j+ i
System.out.println("偶數的個數"+"="+even);
7 t3 |" t! s1 ?" `8 ^, S' [ System.out.println("數字總和"+"="+sum);
' ^' _ E3 l' G7 e" `4 A. ^/ ~, X% U+ j% Y% R; B$ D
3 I* ~% D6 [: P n: @& C }
% c% M& W: J! M catch(Exception e){! u+ m) q( H% \( l! A6 Z) G" S0 R
}
$ I- V$ r- d9 d$ x }/ n+ u9 x/ w, G( g8 o( H
} |