● 동전을 거슬러주자 다만 part1과 달리 이번엔 동전의 개수가 정해져 있다. 문제 (출처: 자바의 정석 연습문제) public class Practice07 { public static void main(String[] args) { if (args.length != 1) { System.out.println("USAGE: java Exercise5_7 3120"); System.exit(0); } int money = Integer.parseInt(args[0]); //커맨드라인으로 받은 변수는 문자열이므로 정수로 변환한다. System.out.println("money=" + money); int[] coinUnit = { 500, 100, 50, 10 }; int[] coin = { 5, 5, ..