728x90 반응형 프로그래머스66 프로그래머스 - 피자 나눠 먹기 (3) class Solution { public int solution(int slice, int n) { int answer = 0; if(n%slice == 0){ answer = n/slice; } else{ answer = n/slice + 1; } return answer; } } 2023. 2. 22. 프로그래머스 - 옷가게 할인 받기 class Solution { public int solution(int price) { int answer = 0; if( price >= 500000) { answer = (int)(price*0.8); } else if( price >= 300000){ answer = (int)(price * 0.9); }else if (price >= 100000){ answer = (int)(price * 0.95); } else { answer = price; } return answer; } } 2023. 2. 22. 프로그래머스 - 머쓱이보다 키 큰 사람 class Solution { public int solution(int[] array, int height) { int answer = 0; for(int i=0; i height){ answer++; } } return answer; } } 2023. 2. 22. 프로그래머스 - 짝수 홀수 개수 class Solution { public int[] solution(int[] num_list) { int[] answer = new int[2]; for(int i=0; i 2023. 2. 22. 이전 1 ··· 9 10 11 12 13 14 15 ··· 17 다음 728x90 반응형