#include<stdio.h>
#include<math.h>
int main()
{
printf("请输入十个数\n");
int a[10] = {9,8,7,6,5,4,3,2,1,0}, s, i, t, p;
// for (i = 0; i <= 9; i++)
// scanf_s("%d", &a[i]);
printf("\n从小到大的排序为");
for (t = 0; t <= 9; t++)
{
for (p=0;p<=8-t ; p++)
{
if (a[p]>a[p+1])
{
s = a[p];
a[p] = a[p+1];
a[p+1] = s;
}
}
printf("%d\t", a[t]);
}
return 0;
}
这个是我写的沉底法
但是答案不对,求找出哪里错了