(函式)計算最長的字串長度

2021-09-02 15:22:03 字數 656 閱讀 5889

6-2 計算最長的字串長度 (10 分)

本題要求實現乙個函式,用於計算有n個元素的指標陣列s中最長的字串的長度。

函式介面定義:

int max_len( char *s, int n );

其中n個字串儲存在s中,函式max_len應返回其中最長字串的長度。

裁判測試程式樣例:

#include

#include

#include

#define maxn 10

#define maxs 20

int max_len( char *s, int n );

int main()

;

scanf("%d", &n);

for(i = 0; i < n; i++)

printf("%d\n", max_len(string, n));

return 0;

/* 你的**將被嵌在這裡 */

輸入樣例:

4blue

yellow

redgreen

輸出樣例:

6

int max_len( char *s, int n )

}return max;

}

習題11 3 計算最長的字串長度

本題要求實現乙個函式,用於計算有n個元素的指標陣列s中最長的字串的長度。int max len char s,int n 其中n個字串儲存在s中,函式max len應返回其中最長字串的長度。include include include define maxn 10 define maxs 20 i...

計算字串長度

獲取指定字串的長度,除英文 數字算乙個長度外其餘字元全算兩個長度 public int length string s return len 匹配中文字元的正規表示式 u4e00 u9fa5 匹配雙位元組字元 包括漢字在內 x00 xff public static boolean isletter...

計算字串的長度

1 cl abap list utilities dynamic output length 類得靜態方法可以計算出字串長度。以下輸出的是7data lv str type string lv len type i lv char type c lv str abc中國 lv char lv str...