#include<stdio.h>
int main()
{
int a[6]={1,2,4,3,8,5};
for (int i=0; i<5; i++) {
int tempi=0;
for (int j=1; j<6-i; j++) {
if (a[tempi]<a[j]) {
int temp;
temp=a[tempi];
a[tempi]=a[j];
a[j]=temp;
tempi++;
}
else
tempi++;
}
}
for (int i=0; i<6; i++) {
printf("%d\t",a[i]);
}
printf("\n");
return 0;
}
|