코딩테스트/[C#] 프로그래머스
[프로그래머스 | C# | Lv.0] 문자열을 정수로 변환하기
냠냠쿠
2023. 8. 25. 17:43
728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181848
📝 나의 풀이
using System;
public class Solution {
public int solution(string n_str) {
int answer = Convert.ToInt32(n_str);
return answer;
}
}
728x90