字串函式的練習

2021-09-29 21:50:35 字數 992 閱讀 9794

剛剛學習完字串函式,記錄一下自己的練習題

1.本題要求編寫程式,針對輸入的n個字串,輸出其中最長的字串。

#include

#include

intmain

(void)}

printf

("the longest is: %s"

,num[t]);

return0;

}

輸入樣例:

5

liwang

zhang

jinxiang

輸出樣例:

the longest is: zhang
2.本題要求編寫程式,針對輸入的n個字串,輸出其中最小的字串。

#include

#include

#define n 80

main(

) if(strcmp(t,str)

>0)

} printf(

"min is: %s",t)

;return 0;

}

輸入樣例:

5

liwang

zhajin

xian

輸出樣例:

min is: jin
3.輸入乙個字串和乙個非負整數n,要求將字串迴圈左移n次。

#include

#include

#define n 101

main(

)

輸入樣例:

hello world!

2

輸出樣例:

llo world!he
字串函式還有很多應用的地方,還應該多加練習。

字串練習

模擬tirm 方法 去除字串兩段的空格 思路 定義兩個變數 start end 分別從字串的兩段對字串進行逐個字元的判斷,當出現不是空格的字元時停止判斷,整個過程中保持 start end import com.ivan.util.systemutil public class practiseon...

字串練習

1,統計乙個字串中個字元的百分比 如輸入字串asdfs a 20 s 40 d 20 f 20 include include void percentage char str,int len if str str 判斷下乙個字元 int main int len 0 printf please i...

字串練習

字串練習 取得校園新聞的編號 num 14 5 print num 產生python文件的 com print com 產生校園新聞的一系列新聞頁 for i in range 20 print format i 練習字串內建函式 strip,lstrip,rstrip,split,count 用函...