公共類findComb{
static int[]a = new int[100];
public static void main(String str[]){
int[] n={4,6,14,17,18,23,26,28 };
int長度= n.length
int r = 6;
a[0]= r;
comb(n,長度-1,r);
}
public static void comb(int[] n,int length,int r){
int I = 0;
int j = 0;
for(I =長度;我& gt= r-1;我- ){
a[r]= n[I];
if(r & gt;1)
梳子(n,i-1,r-1);
否則{
for(j = a[0];j & gt0;j -)
System.out.print(a[j]+"、);
system . out . println();
}
}
}
}