返回列表 發帖

TQC207

public class TQC207 {
5 [1 T6 v$ q# s
& o3 @1 Q! M" P& \1 ^
* L; T0 a; q, W        public static void main(String[] args) {
; G: P% y/ }, Q6 Y    int sum=0, even=0, max=0, tmp=0;
3 m4 _$ w. S6 \' M+ V( c/ u9 A2 o2 \2 W    int[] nums = new int[args.length];
( M1 s4 O2 x7 V: {: z0 v    try{& C& f/ O$ Z0 G* b: U3 h
            for(int i=0 ; i<args.length ; i++){
- P( c: q, `/ j: k5 x9 I: l                    tmp= Integer.parseInt(args[i]);
( y+ j: j# F" j! `+ j0 p, U# a                    nums[i] = tmp;: P3 |- t* H" S  B. ]" j
                    sum += tmp;
+ \5 t& o0 ^& @/ S; E9 |                    if((tmp%2)==0)
" N) I. d7 W6 R             even++;
2 D8 M* @' k; n+ l- M% w0 z# N                    max=Math.max(max,tmp);
. M- R/ t6 S( q4 O6 R* }$ }. d$ R                                    $ d; w. F! ^4 @8 {
            }
0 c" ]. m& r6 x# I8 M9 T1 q5 v            System.out.println("最大值"+"="+max);
  j" d  {2 e- X, ^        System.out.println("偶數的個數"+"="+even);
# O; G. I2 s, y$ y1 E7 R+ U        System.out.println("數字總和"+"="+sum);  Z5 V: Y1 c' t

3 N; |9 O& e% ]- v+ Y           
( l. z  U: h8 B: N2 A& ]- Q- }      }
; x$ `& q  f; J' G    catch(Exception e){6 c1 J8 q: w6 P# u! R, ^
    }* Q3 K1 r/ j+ W, u
    }* r6 a; Q* k1 e
}

返回列表