第十五周 字串的修改(串)

2021-07-25 08:52:25 字數 438 閱讀 1963

#include #include int main()}}

if(count==0)

printf("no");

else

puts(s);

return 0;

}int isequal(char *s,char *t,int len)

for(i=0; ireturn (i0+len_p-len_t);

}else

for(i=len_p; ireturn (i0-len_t+len_p);

}}//最後很鬱悶的是,可能是因為編譯器錯誤,字串的長度總是莫名其妙的變為隨機數

//浪費了很長時間。。。

//看了別人的解答,我充滿了困惑

//再加上乙個陣列的確會簡化**,但是會不會影響效率?

//哪乙個更好呢?

第十五周OJ 字串插入

問題描述 將字串t插入到字串s中,在位置pos後插入。不得使用字串操作函式,輸出組合成的字串。檔名稱 the fifteenth week oj2274 輸入 輸入兩個字串 t和s 和要插入的位置 pos 輸出 輸出組合後的字串 includeint main char t 100 s 100 r ...

第十五周練習 統計字串種類

description 用指標編寫乙個程式,輸入字串後,統計其中各種字元的個數,輸出其中大小寫字母,數字,以及其他字元的個數。主函式已經給出,請編寫統計字元種類函式。input 一串字串 output 該字串中大小寫字母,數字,以及其他字元的個數,最後輸出總字串長度。sample input i p...

第十五周 將字串格式化後輸出(串)

檔名稱 test.cpp 完成日期 2016年12月19日 description 輸入乙個字串,將其按給定的長度n格式化並輸出,若n 0,則輸出原字串 input 輸入乙個字串 output 格式化並輸出 sample input asdfasdf 3sample output asdfas df...