using System;
public class Solution {
public int solution(string s) {
int answer = Convert.ToInt32(s);
return answer;
}
}
문자열을 정수형으로 변환하는 함수인 Convert.ToInt32()를 사용하여 해결
Convert.ToInt32() 을 사용할 때는 상단에 using System을 선언 해주어야 한다.
728x90
'프로그래머스 문제풀이' 카테고리의 다른 글
프로그래머스 Level1 : 자릿수 더하기 (0) | 2020.06.28 |
---|---|
프로그래머스 Level 1 : 두 정수 사이의 합 (0) | 2020.06.25 |
프로그래머스 LEVEL 1 : 직사각형 별찍기 (0) | 2020.06.25 |
프로그래머스 LEVEL1 : 약수의 합 (0) | 2020.06.25 |
프로그래머스 Level 1 : 수박수박수박수박수박수? (0) | 2020.06.25 |