选择法对输入的10个字符按ASCII码大小进行排序

2021-04-01 21:26

阅读:673

标签:http   char   div   return   code   efi   blank   ret   col   

//选择法对输入的10个字符按ASCII码大小进行排序
#include #define N 10
int main(){
    char a[N];
    char t;
    int i,j;
    printf("请输入10个字符:\n");
    for(i=0;i){
        scanf("%c",&a[i]);
    }
    for(i=0;i1;i++){
        for(j=i+1;j){
            if(a[i]>a[j]){
                t=a[j];
                a[j]=a[i];
                a[i]=t; 
            }
        }
    }
    for(i=0;i)
    printf("%4c",a[i]);
    return 0;
} 

收录于文章《885程序设计考点狂背总目录中》

选择法对输入的10个字符按ASCII码大小进行排序

标签:http   char   div   return   code   efi   blank   ret   col   

原文地址:https://www.cnblogs.com/byczyz/p/13526604.html

上一篇:Google 再见 Java

下一篇:springboot简介


评论


亲,登录后才可以留言!