본문 바로가기
프로그래머스 문제풀이

프로그래머스 LEVEL 1 : 문자열을 정수로 바꾸기

by 공부합시다홍아 2020. 6. 25.

using System;

public class Solution {
    public int solution(string s) {
        int answer = Convert.ToInt32(s);
        return answer;
    }
}

문자열을 정수형으로 변환하는 함수인 Convert.ToInt32()를 사용하여 해결

Convert.ToInt32() 을 사용할 때는 상단에 using System을 선언 해주어야 한다.

728x90