class Solution {
public int solution(int a, int b, boolean flag) {
return flag == true ? (a + b) : (a - b);
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 순서쌍의 개수 (0) | 2023.04.26 |
---|---|
[프로그래머스/자바] 정수 찾기 (0) | 2023.04.26 |
[프로그래머스/자바] n의 배수 (0) | 2023.04.26 |
[프로그래머스/자바] 모의고사 (0) | 2023.04.26 |
[프로그래머스/자바] 체육복 (0) | 2023.04.25 |