#include <stdio.h>
int main(void)
{
int a[40] = { 7, 6, 5, 4, 3, 2, 1 };
int i, j, temp;
for (i = 6; i > 0; i--)
for (j = 0; j < i; j++)
if (a[j] > a[j + 1])
{
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
for (i = 0; i < 7; i++)
printf("%d ", a[i]);
return 0;
}
不用那么复杂