class Solution {
public int solution(String binomial) {
String[] bits = binomial.split(" ");
int a = Integer.parseInt(bits[0]);
int b = Integer.parseInt(bits[2]);
if(binomial.indexOf("+") >= 0){
return a + b;
} else if(binomial.indexOf("-") >= 0){
return a - b;
} else {
return a * b;
}
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 문자열 잘라서 정렬하기 (0) | 2023.05.24 |
---|---|
[프로그래머스/자바] 배열 만들기 3 (0) | 2023.05.23 |
[프로그래머스/자바] 할 일 목록 (0) | 2023.05.21 |
[프로그래머스/자바] 접미사 배열 (0) | 2023.05.21 |
[프로그래머스/자바] 약수 구하기 (0) | 2023.05.21 |