標題:
106 數值過濾
[打印本頁]
作者:
b790113g
時間:
2011-12-31 20:14
標題:
106 數值過濾
public class test{
public static void main(String args[]){
//java test 1 2 3 4 a b c
// 10
// 3
// 4
int tot = 0 ; //計算加總
int isN = 0 ; //是數值的各數
int noN = 0 ; //不是數值的各數
for(int i=0;i<args.length;i++){
try{
tot = tot + Integer.parseInt(args[i]);
isN++;
}catch(Exception e){
noN++;
}
}
System.out.println(tot);
System.out.println(noN);
System.out.println(isN);
}
}
複製代碼
作者:
b1081081
時間:
2012-1-6 20:08
import java.lang.*;
import java.util.*;
public class filter{
public static void main(String args[]){
int tot = 0;
int isN = 0;
int noN = 0;
for(int i = 1; i < args.length; i++){
try{
tot = tot + Integer.parseInt(args[i]);
isN++;
}catch(Exception e){
noN++;
}
}
System.out.println(tot);
System.out.println(isN);
System.out.println(noN);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2