- public class TQC207 {
- public static void main(String[] args) {
- int sum=0;
- int odd=0;
- int tmp=0;
- int max=0;
- int a=0;
- int nums[]=new int[args.length];
- try{
- for(int i=0;i<args.length;i++){
- tmp=Integer.parseInt(args[i]);
- nums[i]=tmp;
- sum+=tmp;
- if(tmp%2!=0){
- odd++;
- }else{
- a++;
- }
- max=Math.max(tmp, max);
- }
-
- System.out.println("最大值:"+max);
- System.out.println("奇數個數:"+odd);
- System.out.println("數字的總和:"+sum);
- }catch(Exception e){
-
- }
- }
- }
複製代碼 |