[프로그래머스] 피자 나눠 먹기 (1) -Java

Yunki Kim·2022년 12월 21일
0

프로그래머스

목록 보기
14/101
post-thumbnail

문제


링크


코드

class Solution {
    public int solution(int n) {
        return (n % 7 == 0) ? (n / 7) : (n / 7) + 1;
    }
}

리뷰

0개의 댓글