/*
第 25 題:
寫乙個函式,它的原形是 int continumax(char *outputstr,char *intputstr)
功能:在字串中找出連續最長的數字串,並把這個串的長度返回,
並把這個最長數字串付給其中乙個函式引數 outputstr 所指記憶體。
outputstr 所指的值為 123456789
*/#include#includeusing namespace std;
int continumax(char *outputstr,char *inputstr) }
for (i=0;i*outputstr++=inputstr[start++];
*outputstr='\0';
return max;
} int main()
; char str2=;
char outputstr[100];
int num;
num=continumax(outputstr,str1);
printf("%s中連續最長的數字串:\n長度為%d,內容為%s\n",str1,num,outputstr);
num=continumax(outputstr,str2);
printf("%s中連續最長的數字串:\n長度為%d,內容為%s\n",str2,num,outputstr);
return 0;
}
25 在字串中找出連續最長的數字串
題目 寫乙個函式,它的原形是int continumax char outputstr,char intputstr 功能 在字串中找出連續最長的數字串,並把這個串的長度返回,並把這個最長數字串付給其中乙個函式引數outputstr所指記憶體。例如 abcd12345ed125ss123456789...
字串中找出連續最長的數字串
最近看到了一道好未來的程式設計面試題,過年,加上最近家裡生了一些事,很久沒敲 了,練練手。基礎最重要。題目描述 讀入乙個字串str,輸出字串str中的連續最長的數字串 輸入描述 個測試輸入包含1個測試用例,乙個字串str,長度不超過255。輸出描述 在一行內輸出str中里連續最長的數字串。輸入例子 ...
字串中找出連續最長的數字串
題目描述 讀入乙個字串str,輸出字串str中的連續最長的數字串 輸入描述 個測試輸入包含1個測試用例,乙個字串str,長度不超過255。輸出描述 在一行內輸出str中里連續最長的數字串。示例1輸入 abcd12345ed125ss123456789 輸出解題思路 用max表示經過的數字長度最大值,...