1728: 字符串的查找删除 来看看吧 万一看懂了呢 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; void f(string x){ // 遍历字符串的每一个字符 …… 题解列表 2024年12月08日 0 点赞 0 评论 56 浏览 评分:0.0
c代码记录之字符串的查找删除 摘要: #include #include int main() { char a[1000],b[1000],c[1000],temp; …… 题解列表 2024年01月05日 0 点赞 0 评论 109 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 思路奇妙哦!!! (OoO) 摘要:解题思路: 找到子字符串,用字符串来比较删除即可!!!注意事项:参考代码:#include <stdio.h>#include <string.h>char *change(char *t){ …… 题解列表 2023年10月16日 0 点赞 0 评论 141 浏览 评分:9.9
LikeWater - 1728: 字符串的查找删除C++(明明是个简单题,但是不知道为啥我写了很久,不能怪我**,只能怪这个题目小绕) 摘要:####又是用的字符串对象,可以参照上一篇文章。 ```cpp #include #include #include #include using namespace std; int …… 题解列表 2023年03月11日 0 点赞 1 评论 96 浏览 评分:9.9
求大神看看 为哈还是过一半 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int flag = 0,a[1000]={0}; char…… 题解列表 2023年03月02日 0 点赞 0 评论 64 浏览 评分:0.0
1728: 字符串的查找删除 摘要:```cpp #include #include using namespace std; int main() { char del[20],str[200]; get…… 题解列表 2023年02月01日 0 点赞 0 评论 214 浏览 评分:9.9
超简化版 字符串的查找删除 使用 substr erase 及cin>>读入\n解决方法 摘要:```cpp #include #include using namespace std; int main() { string shor,mark; string a…… 题解列表 2023年01月31日 0 点赞 0 评论 175 浏览 评分:9.9
优质题解 通过直接使用find和erase的组合来进行字符串的查找与删除 摘要:#### 通过直接应用string容器的find和erase库函数,进行定位删除操作 #### 1、审题 审题很重要,本人读完几遍题目,没注意题目里面细节,按着我自己想法来写,没有审题,忽略了括…… 题解列表 2022年12月29日 0 点赞 0 评论 395 浏览 评分:9.9
字符串的查找删除 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Sca…… 题解列表 2022年06月12日 0 点赞 1 评论 215 浏览 评分:0.0
直接替换字符串 摘要:import java.util.*;public class Main { static Scanner in = new Scanner(System.in); public stat…… 题解列表 2022年04月08日 0 点赞 0 评论 139 浏览 评分:0.0