2009-04-04 14:27:01來源不明
夜魅的把戲
/*****************************************/
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
main()
{
int a,b,c;
char x[201];
while(gets(x))
{
int m=strlen(x),time=1,max=0,maxchar;
for(a=0;a<m;a++)
{
if(x[a]==x[a+1]&&a!=m-1)
time++;
else
{
if(time>max)
{
max=time;
maxchar=x[a];
}
time=1;
}
}
printf("%c",maxchar);
for(b=1;b<max;b++)
printf("-%c",maxchar);
printf("\n");
}
return 0;
}
下一篇:打不倒的魔理沙