728x90 반응형 분류 전체보기273 프로그래머스 - 최댓값 만들기 (1) import java.util.Arrays; class Solution { public int solution(int[] numbers) { Arrays.sort(numbers); return numbers[numbers.length-1] * numbers[numbers.length-2]; } } 2023. 2. 22. 프로그래머스 - 특정 문자 제거하기 class Solution { public String solution(String my_string, String letter) { String answer = ""; answer = my_string.replace(letter,""); return answer; } } 2023. 2. 22. 프로그래머스 - 피자 나눠 먹기 (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. 이전 1 ··· 60 61 62 63 64 65 66 ··· 69 다음 728x90 반응형