蓝桥杯算法训练VIP-字符串编辑-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; char a[45]; char b[50]; int main() { …… 题解列表 2020年04月04日 0 点赞 0 评论 251 浏览 评分:0.0
python 1621字符串编辑 带解析 摘要:def de(): #删除 for i in range(len(s)): #找到要替换的 直接改为空字符 然后跳出 if E[1]==s[i]: s[i]=…… 题解列表 2023年03月01日 0 点赞 0 评论 56 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码) 摘要:不考虑'.'也是行的,有没有大佬,知道python如何控制读入指定字符结束输入的?指点一下,谢谢了。 ```python s= input().strip() command = input()…… 题解列表 2020年02月18日 0 点赞 3 评论 351 浏览 评分:0.0
字符串编辑 摘要:解题思路:swicth语句进行操作选项注意事项:参考代码:#include<stdio.h>#include<string.h>void del(char *ch,char c){ int i,key…… 题解列表 2021年05月12日 0 点赞 0 评论 178 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑,易懂 摘要:def D(n,a): if not a in n: return "目标不存在,请重新输入" else: return n.replace(a…… 题解列表 2023年04月02日 0 点赞 0 评论 58 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码) 摘要:```python def oper(list1 , str1 ,element): temp = str(element[0]) if temp in list1 : …… 题解列表 2020年02月21日 0 点赞 0 评论 461 浏览 评分:0.0