返回列表 發帖

106 數值過濾器

本帖最後由 b790113g 於 2011-12-31 12:07 編輯 " c  F1 Y& V5 O3 Y1 ~' O) k6 g9 U
% _8 c; Z# U. c. `3 ^1 b) z' o3 B
不是數字就別加總8 f3 }* M3 s" D+ d! y: C6 f
3 x8 \- {- A* |9 a5 M
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. public class jva106
  2. {
  3.         public static void main(String arg[])
  4.         {
  5.         int tot=0;
  6.         int isn=0;
  7.         int non=0;
  8.                 for(int i=0;i<arg.length;i++)
  9.                 {
  10.                         try{
  11.                         tot=tot+Integer.parseInt(arg[i]);
  12.                         isn++;
  13.                         }catch(Exception e){
  14.                         non++;
  15.                         }
  16.                 }
  17.         System.out.println("數值之總和為:"+tot);
  18.         System.out.println("非數值個數為:"+non);
  19.         System.out.println("純數之個數為:"+isn);
  20.        
  21.         }
  22. }
複製代碼
救命!!!!!!!!為什麼不能執行
* h3 H( ~* z; L' J6 c阿阿阿阿阿阿阿阿阿阿阿阿
水桶小鄭,鯰魚

TOP

返回列表