用冒泡法对10个数从小到大的顺序排序

#include <stdio.h>
int main()
{
    int a[10];
    int i,j,t;
    printf("input 10 numbers:\n");
    for(i=0;i<10;i++)
    scanf("%d",&a[i]);
    printf("\n");
    for(j=0;j<9;j++)
    for(i=0;i<9-j;i++)
    if(a[i]>a[i+1])
    {
        t=a[i];
        a[i]=a[i+1];
        a[i+1]=t;
    }
    printf("the sorted numbers:\n");
    for(i=0;i<10;i++)
    printf("%d ",a[i]);
    return 0;
}

用冒泡法对10个数从小到大的顺序排序

上一篇:「DY十八章」第七章


下一篇:PostgreSQL For Windows 全功能精简版