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