private static boolean isDigit(String s) { try{ Integer.parseInt(s); return true; }catch(NumberFormatException e){ return false; }}
0 件のコメント:
コメントを投稿