프로그래머스 문자열 다루기 기본 자바1 [프로그래머스] 문자열 다루기 기본.java (try ~ catch) [프로그래머스] 문자열 다루기 기본.java (try ~ catch) . . 문자열을 int 로 못한다면 false 를 예외로 두면된다. /* 문자열을 int 로 바꾸지 못한다면 false 이다. */ class Solution { public boolean solution(String s) { if(s.length() == 4 || s.length() == 6){ try{ int x = Integer.parseInt(s); return true; } catch(NumberFormatException e){ return false; } } else return false; } } 2022. 11. 4. 이전 1 다음