본문 바로가기
프로그래머스/LV1.자바

[프로그래머스] 문자열 다루기 기본.java (try ~ catch)

by 몰라닉네임 2022. 11. 4.

[프로그래머스] 문자열 다루기 기본.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;
  }
}