返回列表 發帖

106 數值過濾

  1. public class test{

  2.         public static void main(String args[]){
  3.        
  4.                 //java test 1 2 3 4 a b c
  5.                 // 10
  6.                 // 3
  7.                 // 4
  8.                
  9.                 int tot = 0 ; //計算加總
  10.                 int isN = 0 ; //是數值的各數
  11.                 int noN = 0 ; //不是數值的各數
  12.                
  13.                 for(int i=0;i<args.length;i++){
  14.                        
  15.                         try{
  16.                                 tot = tot + Integer.parseInt(args[i]);
  17.                                 isN++;
  18.                         }catch(Exception e){
  19.                                 noN++;
  20.                         }
  21.                
  22.                
  23.                 }
  24.                
  25.                 System.out.println(tot);
  26.                 System.out.println(noN);
  27.                 System.out.println(isN);
  28.                
  29.         }


  30. }
複製代碼

返回列表