不知道为什么  第一题这样写只有55 public class test2 {     public static void main(String[] args) {         Scanner in = new Scanner(System.in);         int len = in.nextInt();         int count = 0;         for(int i= 0; i < len; i++){             String temp = in.nextLine();             if(isReal(temp)){                 count++;             }         }         System.out.println(count);     }     public static boolean isReal(String str){         if(str.length() > 10) return false;         return str.matches("^[a-zA-Z]+$");     } } 有大佬说说问题 吗