#include<stdio.h>
void main()
{
int temp,a[6]={127,3,6,28,54,68};
{
int i,j;
for(i=1;i<6;i++)
for(j=0;j<6-i;j++)
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
for(i=0;i<6;i++)
printf("%d\t",a[i]);
}
printf("\n");
}
void main()
{
int temp,a[6]={127,3,6,28,54,68};
{
int i,j;
for(i=1;i<6;i++)
for(j=0;j<6-i;j++)
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
for(i=0;i<6;i++)
printf("%d\t",a[i]);
}
printf("\n");
}
愿用余生致力编程