ZZOOOJJJ ZZZZOOOOOJJJ ZOOOJJ E
ZOJZOJOJ ZOJZOJZOJZOO ZOJOJO
#include <string.h> #include <stdio.h> int main() { char a[105]; int b[105]; while(scanf("%s",a)!=EOF &&a[0]!='E') { memset(b,0,sizeof(b)); int l,i; l=strlen(a); for(i=0;i<l;i++) { b[a[i]]++; } while(l--) { if(b['Z']>0) { printf("Z"); b['Z']--; } if(b['O']>0) { printf("O"); b['O']--; } if(b['J']>0) { printf("J"); b['J']--; } } printf("\n"); } return 0; }
原文地址:http://blog.csdn.net/sky_miange/article/details/41895777