알고리즘

[프로그래머스] 코딩테스트 연습 - 문자열을 정수로 변환하기(JAVA)

inthyes 2023. 7. 25. 10:19

https://school.programmers.co.kr/learn/courses/30/lessons/181848

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

문제

숫자로만 이루어진 문자열 n_str이 주어질 때, n_str을 정수로 변환하여 return하도록 solution 함수를 완성해주세요.


소스코드

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

 

소스코드 설명

1. string을 int로 바꿀 수 있게하는 Integer.parseInt()함수를 사용한다.