这是道排序题,由大到小。请各位大神看看错哪了?
swap(int *x,int *y){
int t;
t=*x;
*x=*y;
*y=t;
}
#include<stdio.h>
main()
{
int a[10],i,j;
printf("please input the vaue of the a[10]\n");
for(i=0;i<10;i++)
scanf("%d",&a[i]);
printf("排序前的数组;\n");
for(i=0;i<10;i++)
printf("%d\n",a[i]);
for(i=0;i<10;i++)
for(j=i+1;j<10;j++)
if(a[i]<a[j])
{ swap(&a[i],&a[j]);}
printf("排序后的数组;\n");
for(i=0;i<10;i++);
printf("a[%d]=%d\n",i,a[i]);
}