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