import java.util.Arrays; import java.util.Scanner; /* 총 개수: N 뽑는 개수: R 순열과는 다르게 isSelected를 사용하지 않고, 재귀 내의 반복문의 시작점인 start를 변경해줌으로써 조합 형태의 경우의 수 구현 */ public class Combination { static int N, R, totalCnt; static int[] totals, selected; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); R = sc.nextInt(); totals = new int[N]; selected = new int[R]; for ..