class Solution {
public int solution(String my_string) {
String[] arr = my_string.split(" ");
int answer = Integer.parseInt(arr[0]);
for (int i = 1; i < arr.length; i += 2) {
if (arr[i].equals("+")) {
answer += Integer.parseInt(arr[i + 1]);
} else {
answer -= Integer.parseInt(arr[i + 1]);
}
}
return answer;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 영어가 싫어요 (0) | 2023.02.05 |
---|---|
[프로그래머스] 삼각형의 완성조건 (2) (0) | 2023.02.05 |
[프로그래머스] 치킨 쿠폰 (0) | 2023.02.05 |
[프로그래머스] 로그인 성공? (0) | 2023.02.05 |
[프로그래머스] 숨어있는 숫자 (0) | 2023.02.05 |