下邊內(nèi)容是關(guān)于 C++求字符串最長連續(xù)字符的長度的內(nèi)容。
站在用戶的角度思考問題,與客戶深入溝通,找到新樂網(wǎng)站設(shè)計與新樂網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗(yàn)好的作品,建站類型包括:成都網(wǎng)站建設(shè)、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、主機(jī)域名、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋新樂地區(qū)。
#include
{
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);
}