728x90
반응형
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;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 특정 문자 제거하기 (0) | 2023.02.22 |
---|---|
프로그래머스 - 피자 나눠 먹기 (3) (0) | 2023.02.22 |
프로그래머스 - 머쓱이보다 키 큰 사람 (0) | 2023.02.22 |
프로그래머스 - 짝수 홀수 개수 (0) | 2023.02.22 |
프로그래머스 - 배열 자르기 (0) | 2023.02.22 |