https://school.programmers.co.kr/learn/courses/30/lessons/12925
정답
class Solution {
public int solution(String s) {
int answer = 0;
answer = Integer.parseInt(s);
return answer;
}
}
다른 사람의 풀이
public class StrToInt {
public int getStrToInt(String str) {
boolean Sign = true;
int result = 0;
for (int i = 0; i < str.length(); i++) {
char ch = str.charAt(i);
if (ch == '-')
Sign = false;
else if(ch !='+')
result = result * 10 + (ch - '0');
}
return Sign?1:-1 * result;
}
//아래는 테스트로 출력해 보기 위한 코드입니다.
public static void main(String args[]) {
StrToInt strToInt = new StrToInt();
System.out.println(strToInt.getStrToInt("-1234"));
}
}
'Java > 프로그래머스' 카테고리의 다른 글
[JAVA] 프로그래머스 - 자릿수 더하기 (0) | 2024.05.13 |
---|---|
[JAVA] 프로그래머스 - 약수의 합 (0) | 2024.05.13 |
[JAVA] 프로그래머스 - 문자열 내 p와 y의 개수 (0) | 2024.05.13 |
[JAVA] 프로그래머스 - 다음에 올 숫자 (0) | 2024.05.12 |
[JAVA] 프로그래머스 - 종이 자르기 (0) | 2024.05.12 |