본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] 아이스 아메리카노

class Solution {
    public int[] solution(int money) {
        int[] answer = {money/5500, money%5500};
        return answer;
    }
}