题解 | #字符串内排序#
字符串内排序
http://www.nowcoder.com/practice/cc2291ab56ee4e919efef2f4d2473bac
//冒泡排序? #include <stdio.h> #include <string.h> main () { char c[200],t; while(scanf("%s",&c)!=EOF) { for(int i=0;i<strlen(c)-1;i++) { for(int j=0;j<strlen(c)-1-i;j++) { if(c[j]>c[j+1]) { t=c[j]; c[j]=c[j+1]; c[j+1]=t; } } } printf("%s",c); } return 0; }