编写函数code( char *p),对以指针传递进来的字符串进行简单加密后显示,然后在main中
编写函数code( char *p),对以指针传递进来的字符串进行简单加密后显示,然后在main中
日期:2016-05-31 16:23:35 人气:3
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];