울음참고 개발공부
article thumbnail
728x90

 

class Solution {
    public int[] solution(int money) {
        int[] answer = new int[2];
        
        int icedCoffee = 5500;
        
        answer[0] = money/icedCoffee;
        answer[1] = money%icedCoffee;
        
        return answer;
    }
}

 

728x90
profile

울음참고 개발공부

@메각이

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!