寫正確函數須要注意的地方:在字符串中找出連續最長的數字串,並把這個串的長度返回

int findDigtalMaxLength(char* a, int count, char*& ret) { if(a==NULL || count<0)//輸入參數處理 return 0; int maxstart=0;//記錄最長數字串的起始 int maxlength=0;//記錄最長數字串的長度 int length=0; int start=0; for(int
相關文章
相關標籤/搜索