https://school.programmers.co.kr/learn/courses/30/lessons/120818
정답
class Solution {
public int solution(int price) {
double discount = 1.0;
if(price>=100000 && price<300000)
{
discount = 0.95;
}
else if(price>=300000 && price<500000)
{
discount = 0.9;
}
else if(price>=500000)
{
discount = 0.8;
}
double answer = price*discount;
return (int)answer;
}
}
다른 사람의 풀이
class Solution {
public int solution(int price) {
int answer = 0;
if(price>=500000) return (int)(price*0.8);
if(price>=300000) return (int)(price*0.9);
if(price>=100000) return (int)(price*0.95);
return price;
}
}
'Java > 프로그래머스' 카테고리의 다른 글
[JAVA] 프로그래머스 - 머쓱이보다 키 큰 사람 (0) | 2024.04.20 |
---|---|
[JAVA] 프로그래머스 - 문자 반복 출력하기 (0) | 2024.04.20 |
[JAVA] 프로그래머스 - 피자 나눠 먹기(3) (1) | 2024.04.19 |
[JAVA] 프로그래머스 - 피자 나눠 먹기(2) (0) | 2024.04.19 |
[JAVA] 프로그래머스 - 중복된 숫자 개수 (0) | 2024.04.19 |