Coding Test/프로그래머스
[프로그래머스/자바] 아이스 아메리카노
yurison
2023. 4. 14. 12:59
class Solution {
public int[] solution(int money) {
int[] answer = {money/5500, money%5500};
return answer;
}
}