프로그래머스 코딩테스트 입문 - DAY5
머쓱이네 옷가게는 10만 원 이상 사면 5%, 30만 원 이상 사면 10%, 50만 원 이상 사면 20%를 할인해줍니다.
구매한 옷의 가격 price가 주어질 때, 지불해야 할 금액을 return 하도록 solution 함수를 완성해보세요.
price | result |
---|---|
150,000 | 142,500 |
580,000 | 464,000 |
class Solution {
public int solution(int price) {
int answer = 0;
double a = 0;
if (price >= 500000)
a = price * 0.8;
else if (price >= 300000 && price <500000)
a = price * 0.9;
else if (price >= 100000 && price <300000)
a = price * 0.95;
else
a = price;
answer = (int)a;
return answer;
}
}
머쓱이는 추운 날에도 아이스 아메리카노만 마십니다. 아이스 아메리카노는 한잔에 5,500원입니다. 머쓱이가 가지고 있는 돈 money가 매개변수로 주어질 때, 머쓱이가 최대로 마실 수 있는 아메리카노의 잔 수와 남는 돈을 순서대로 담은 배열을 return 하도록 solution 함수를 완성해보세요.
money | result |
---|---|
5,500 | [1, 0] |
15,000 | [2, 4000] |
class Solution {
public int[] solution(int money) {
int[] answer = new int [2];
answer[0] = money / 5500;
answer[1] = money % 5500;
return answer;
}
}
머쓱이는 40살인 선생님이 몇 년도에 태어났는지 궁금해졌습니다. 나이 age가 주어질 때, 2022년을 기준 출생 연도를 return 하는 solution 함수를 완성해주세요.
age | result |
---|---|
40 | 1983 |
23 | 2000 |
class Solution {
public int solution(int age) {
int answer = 0;
answer = 2022 - age + 1;
return answer;
}
}
정수가 들어 있는 배열 num_list가 매개변수로 주어집니다. num_list의 원소의 순서를 거꾸로 뒤집은 배열을 return하도록 solution 함수를 완성해주세요.
num_list | result |
---|---|
[1, 2, 3, 4, 5] | [5, 4, 3, 2, 1] |
[1, 1, 1, 1, 1, 2] | [2, 1, 1, 1, 1, 1] |
[1, 0, 1, 1, 1, 3, 5] | [5, 3, 1, 1, 1, 0, 1] |
class Solution {
public int[] solution(int[] num_list) {
int n = num_list.length;
int[] answer = new int[n];
int i =0;
while (n>0) {
answer[i]=num_list[n-1];
i++;
n-= 1;
}
return answer;
}
}
출처 : https://school.programmers.co.kr/learn/challenges
이미지 출처 : 작가 storyset 출처 Freepik