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

정선모·2022년 10월 18일
0

프로그래머스

목록 보기
75/91

머쓱이가 아이스 아메리카노 한 잔은 꼭 마실 수 있길 빕니다.

class Solution {
    public int[] solution(int money) {
        int[] answer = new int[2];
        answer[0] = money/5500;
        answer[1] = money%5500;
        return answer;
    }
}
profile
개발자가 되어가는 비전공자

0개의 댓글