728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181848
문제)숫자로만 이루어진 문자열 n_str이 주어질 때, n_str을 정수로 변환하여 return하도록 solution 함수를 완성해주세요.
풀이)
class Solution {
public int solution(String n_str) {
int answer = Integer.parseInt(n_str);
return answer;
}
}
문자열을 정수로 바꾸는 걸 모르겠다면
https://lavenderje.tistory.com/108
여기 참조 부탁드립니당🖤
728x90
'프로그래밍 > Java(자바)' 카테고리의 다른 글
[프로그래머스] 정수 찾기 --java (0) | 2023.12.21 |
---|---|
[프로그래머스] 조건에 맞게 수열 변환하기(1) --java (0) | 2023.12.21 |
[프로그래머스] 소문자로 바꾸기 -- java Feat.대문자 소문자로 변환하기 (0) | 2023.12.21 |
[프로그래머스] 두 수의 연산값 비교하기 -- java (0) | 2023.12.21 |
[프로그래머스] 더 크게 합치기 -- java Feat. String을 int로, int를 String으로 바꾸기 (0) | 2023.12.21 |