프로그래머스(Level 0) - 👔 옷가게 할인 받기

Gammi·2022년 12월 24일
0

프로그래머스

목록 보기
16/69

✔ 문제






✔ 풀이


class Solution {
  public int solution(int price) {
    int answer = 0;
    double sub_ans = 0;
    
    if(price >= 100000 && price < 300000) {
      sub_ans = price * 0.95;
    }else if(price >= 300000 && price < 500000) {
      sub_ans = price * 0.9;
    }else if(price >= 500000) {
      sub_ans = price * 0.8;
    }else {
      sub_ans = price;
    }
    
    answer = (int)sub_ans;
    return answer;
  }
}





처음에 else문 안 써서 한번 틀렸음😭😭

profile
개발자가 되었어요⭐️

0개의 댓글