본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] 간단한 식 계산하기

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;
        }
    }
}