[프로그래머스 LV1] 짝수와 홀수

popolarburr·2023년 2월 22일
0
post-thumbnail

- 문제



- 풀이


class Solution {
    public String solution(int num) {
        if(num % 2 == 0) return "Even";
        return "Odd";
    }
}

  • 정리 : 사실 삼항연산자를 쓰려고 했지만 단순하게 풀이!
profile
차곡차곡

0개의 댓글