比较法的问题
#include<iostream>using namespace std;
int main()
{int i, j,t;
int a[10]={11,1,6,8,9,13,5,3,2,4};
for(i=0;i<9;i++)
for(j=1;j<10;j++)
if(a[i]>a[j])
{t=a[i];
a[i]=a[j];
a[i]=t;
}
for(i=0;i<10;i++)
cout<<a[i]<<" ";
cout<<endl;
return 0;}
用比较法排序此程序有什么问题,请求高手解答