Board logo

標題: 106 數值過濾 [打印本頁]

作者: b790113g    時間: 2011-12-31 20:14     標題: 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. }
複製代碼

作者: b1081081    時間: 2012-1-6 20:08

  1. import java.lang.*;
  2. import java.util.*;
  3. public class filter{
  4.           public static void main(String args[]){
  5.              
  6.               int tot = 0;
  7.               int isN = 0;
  8.               int noN = 0;
  9.              
  10.              
  11.         for(int i = 1; i < args.length; i++){
  12.             try{
  13.                 tot = tot + Integer.parseInt(args[i]);
  14.                 isN++;
  15.             }catch(Exception e){
  16.                 noN++;
  17.             }
  18.               }

  19.               System.out.println(tot);
  20.         System.out.println(isN);
  21.         System.out.println(noN);
  22.                 }
  23. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2