본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] flag에 따라 다른 값 반환하기

class Solution {
    public int solution(int a, int b, boolean flag) {
        return flag == true ? (a + b) : (a - b);
    }
}