用二维数组编写21点游戏程序

static void(int[]group)

{

int temp;

int pos=0;

for(int i=0;i< group.Length-1;i++)

{

pos=i;

for(intj=i+1;j<group.Length;j++)

{

if(group[j]<group[pos])

{

pos=j;

}

}//第i个数与最小的数group[pos]交换

temp=group[i];

group[i]=group[pos];

group[pos]=temp;

}

}