返回列表 發帖

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. }
複製代碼

  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. }
複製代碼
離離草原上
一歲一枯榮
野火燒不盡
春風吹又生

TOP

返回列表