프로그래머스 - 문자열을 정수로 변환하기

JJJ·2023년 4월 22일
0
post-custom-banner

문자열을 정수로 변환하기

문제 설명

숫자로만 이루어진 문자열 nstr이 주어질 때, n_str을 정수로 변환하여 return하도록 solution 함수를 완성해주세요.
제한사항)
1 ≤ n_str ≤ 5
n_str은 0부터 9까지의 정수 문자로만 이루어져 있습니다.
![](https://velog.velcdn.com/images/jayking
/post/4be74de6-200e-487f-9a5c-9274b73b13c5/image.png)

풀이

class Solution {
    public int solution(String n_str) {
        int answer = 0;
        answer=Integer.parseInt(n_str);
        return answer;
    }
}

풀이방법

1) Integer.parseInt()
:java.lang.Integer 클래스의 static 메소드인 parseInt() 메소드 사용
(int to String)
:Integer valueOf()
:java.lang.Integer 클래스의 static 메소드인 valueOf()
==>두 메서드 모두 자주 사용되므로 반드시 기억하자

profile
Think Talk Act
post-custom-banner

0개의 댓글