프로그래머스 - 피자 나눠 먹기(1)
class Solution { public int solution(int n) { int 판수 = n/7; n = n%7; if(n>0) 판수++; return 판수; } }