728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12925
public class Solution {
public int solution(string s) {
int answer = 0;
int.TryParse(s, out answer);
return answer;
}
}
TryParse로 간단하게
https://docs.microsoft.com/ko-kr/dotnet/api/system.int32.tryparse
* TryParse는 out으로 값을 내보냄과 동시에 bool으로 반환 여부를 확인할 수 있기 때문에 자주 사용함
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 소수 찾기 (0) | 2021.08.30 |
---|---|
[프로그래머스 C#] 서울에서 김서방 찾기 (0) | 2021.08.30 |
[프로그래머스 C#] 수박수박수박수박수박수? (0) | 2021.08.29 |
[프로그래머스 C#] 시저 암호 (0) | 2021.08.21 |
[프로그래머스 C#] 약수의 합 (0) | 2021.08.20 |