- 二、字符串排序
题目描述
输入一个长度不超过20的字符串,对所输入的字符串,按照ASCII码的大小从小到大进行排序,请输出排序后的结果
输入描述:
一个字符串,其长度n<=20
输出描述:
输入样例可能有多组,对于每组测试样例,
按照ASCII码的大小对输入的字符串从小到大进行排序,输出排序后的结果
示例1
输入
dcba
输出
abcd
代码如下:
#include <stdio.h>
int main(){
char a[30];
int count=0;
scanf("%c",&a[count]);
while(a[count]!='\n'){//注意输入
count++;
scanf("%c",&a[count]);
}
//冒泡排序
for(int i=0;i<count-1;i++){
for(int j=count-1;j>i;j--){
if(a[j-1]>a[j]){
int temp=a[j-1];
a[j-1]=a[j];
a[j]=temp;
}
}
}
//输出
for(int i=0;i<count;i++){
printf("%c",a[i]);
}
return 0;
}