Compare commits

...

2 Commits

Author SHA1 Message Date
d2970d183d Auto commit 2025-03-17 18:51:31 +08:00
cfdebb17f7 Auto commit 2025-03-17 18:50:51 +08:00
2 changed files with 30 additions and 0 deletions

View File

@ -75,6 +75,8 @@ int main() {
最终结果: “12ABC34567890”
### 4. 字符串查找
字符串查找: “123456123abc123hbc”

View File

@ -1,6 +1,33 @@
#include <stdio.h>
#include <string.h>
<<<<<<< HEAD
int main(){
char str[100];
char subStr[100];
int i, j, index;
gets(str);
gets(subStr);
scanf("%d", &index);
i=strlen(subStr) + strlen(str);//主串+子串=两个合并后的结束符位置
str[i] = '\0';
i--;//13->i-3 -> i
for(j=strlen(str)-1;j>=index;j--){
str[i--] = str[j];
}
// for(i=0;i<strlen(subStr);i++){
// str[index+i] =subStr[i];
// }
puts(str);
return 0;
}
=======
int main() {
char str1[200], str2[100];
int i, j, index;
@ -39,3 +66,4 @@ int main() {
return 0;
}
>>>>>>> 1843d42e7e825deacd49772a204a39bc2f132820