vue框架中俩个平行的组件如何进行值传递
1 回答
米琪卡哇伊
TA贡献1998条经验 获得超6个赞
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;
}
}
- 1 回答
- 0 关注
- 767 浏览
添加回答
举报
0/150
提交
取消