class Solution {
public int solution(String s) {
int answer = Integer.parseInt(s); //문자열을 정수로 바꾸는 함수!!
return answer;
}
}
'Language > JAVA' 카테고리의 다른 글
[프로그래머스] 없는 숫자 더하기 (0) | 2022.01.14 |
---|---|
[프로그래머스] 음양 더하기 (0) | 2022.01.14 |
[프로그래머스]두 정수 사이의 합 (0) | 2022.01.14 |
[프로그래머스] 직사각형 별찍기 (0) | 2022.01.14 |
[프로그래머스]가운데 글자 가져오기 (0) | 2022.01.14 |