글
프로그래머스 C# 문자열을 정수로 바꾸기(int.Parse)
프로그래밍
2023. 1. 22. 18:05
728x90
SMALL
using System.Collections.Generic;
public class Solution {
public int solution(string s) {
int answer = 0;
if(s[0].ToString() == "-")
{
s = s.Replace("-", "");
answer = (-1) * int.Parse(s);
}
else
{
answer = int.Parse(s);
}
return answer;
}
}
// -가 있으면 -를 붙인다.
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 시저 암호((char)(), 96, 122) (0) | 2023.01.22 |
---|---|
프로그래머스 C# 문자열 다루기 기본(Int32.TryParse(,)) (0) | 2023.01.22 |
프로그래머스 C# 멀리 뛰기(점화식, 피보나치, JAVA) (0) | 2023.01.22 |
프로그래머스 C# 수박수박수박(삼항연산자, JAVA) (0) | 2023.01.22 |
프로그래머스 C# 서울에서 김서방 찾기(쉬움, JAVA) (0) | 2023.01.22 |