标签:http char div return code efi blank ret col
//选择法对输入的10个字符按ASCII码大小进行排序 #include <stdio.h> #define N 10 int main(){ char a[N]; char t; int i,j; printf("请输入10个字符:\n"); for(i=0;i<N;i++){ scanf("%c",&a[i]); } for(i=0;i<N-1;i++){ for(j=i+1;j<N;j++){ if(a[i]>a[j]){ t=a[j]; a[j]=a[i]; a[i]=t; } } } for(i=0;i<N;i++) printf("%4c",a[i]); return 0; }
收录于文章《885程序设计考点狂背总目录中》
标签:http char div return code efi blank ret col
原文地址:https://www.cnblogs.com/byczyz/p/13526604.html