插入排序

#include <stdio.h>

int main(){
        int a[6]={21,45,58,64,71};
        int i,j,k,x;
        printf("插入前的数组:");
        for (i=0;i<6;i++){
                printf(" %d",a[i]);
        }
        printf("\n请输入要插入的数:");
        scanf("%d",&x);
        for (i=0;i<5;i++){
                if(a[i] > x)
                        break;
        }
        for (j=5;j>i;j--){
                a[j]=a[j-1];
        }
        a[i]=x;
        printf("\n插入后的数组:");
        for(i=0;i<6;i++){
                printf(" %d",a[i]);
        }
        printf("\n");
        return 0;
}
此条目发表在C分类目录。将固定链接加入收藏夹。

发表评论

邮箱地址不会被公开。 必填项已用*标注

To create code blocks or other preformatted text, indent by four spaces:

    This will be displayed in a monospaced font. The first four 
    spaces will be stripped off, but all other whitespace
    will be preserved.
    
    Markdown is turned off in code blocks:
     [This is not a link](http://example.com)

To create not a block, but an inline code span, use backticks:

Here is some inline `code`.

For more help see http://daringfireball.net/projects/markdown/syntax

Protected with IP Blacklist CloudIP Blacklist Cloud