这个呢?帮忙看看吧
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(a[i]>a[j])
{
t=a[i];
a[i]=a[j];
a[j]=t;
}
}
}