728x90 반응형 Java77 프로그래머스 - 옷가게 할인 받기 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. 프로그래머스 - 배열 자르기 class Solution { public int[] solution(int[] numbers, int num1, int num2) { int[] answer = new int[num2-num1+1]; int count = 0; for(int i=num1; i 2023. 2. 22. 이전 1 ··· 12 13 14 15 16 17 18 ··· 20 다음 728x90 반응형