프로그래머스 Lv.0 옷가게 할인 받기개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2023. 12. 18. 12:16
Table of Contents
<Solution>
class Solution {
public int solution(int price) {
double answer = 0;
if(price >= 100000 && price < 300000) {
answer = price * 0.95;
}else if(price >= 300000 && price < 500000) {
answer = price * 0.90;
}else if (price >= 500000) {
answer = price * 0.80;
} else {
answer = price;
}
return (int)answer;
}
}
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!