본문 바로가기
프로그래머 ,백준, 유튜브, 문제

문자열 다루기 기본_프로그래머스

by 리승우 2022. 9. 23.

[필요개념]

> Integer.parseInt 메서드

> try catch exception 문

 

 

[나에게 주는 칭찬]

처음인데도 기존에 알고있던 지식을 이용한 접근방식이 좋았으며, 효율적으로 매우 잘 풀었음!

 

public class Hello {

    public static void main(String[] args) {

        String s = "a234";
        boolean answer = true;

        if(s.length()==4 || s.length()==6){
            try {
                Integer.parseInt(s);
            } catch (Exception e){
                answer = false;
            } answer = true;

        } else{
            answer = false;
        }

    }
}

댓글