下边内容是关于 C++求字符串最长连续字符的长度的内容。
#include<assert.h>
{
assert(s!=NULL);
int temp_count,final_count=0;
p=s;
{
temp_count=0;
{
temp_count++;
else
break;
}
if(temp_count>final_count)
{
final_char=temp_char;
final_count=temp_count;
}
}
return final_count;
}
void main()
{
char s[]="aabbbcccc";
int count;
char c;
count=get_max_char_count(s,&c);
printf("%c is appeared %d timesn",c,count);
}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。