蓝桥杯算法训练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
蓝桥杯算法训练VIP-字符串编辑 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char s[50]; char order,c…… 题解列表 2022年05月11日 0 点赞 0 评论 95 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-python 摘要:解题思路:注意事项:参考代码:def Delete(s,arg): try: index=s.index(arg) string1=s[0:index] …… 题解列表 2023年01月10日 0 点赞 0 评论 69 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码) 摘要:不考虑'.'也是行的,有没有大佬,知道python如何控制读入指定字符结束输入的?指点一下,谢谢了。 ```python s= input().strip() command = input()…… 题解列表 2020年02月18日 0 点赞 3 评论 351 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码)函数加C++的string的函数 摘要:```cpp #include #include #include using namespace std; void Del(string &str,char b) { strin…… 题解列表 2020年10月12日 0 点赞 0 评论 322 浏览 评分: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
C# 字符串编辑-insert -erase-find 摘要:```cpp #include using namespace std; int main() { int t=0; string s; char n,m,a1,a2; …… 题解列表 2022年07月29日 0 点赞 0 评论 155 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑私以为简洁易懂的题解(C语言代码) 摘要:#include<stdio.h> #include<stdlib.h> void Dle(char* s,char c) { int n; for (n = 0; *(s + n) …… 题解列表 2021年01月19日 0 点赞 0 评论 235 浏览 评分:0.0
1621: 蓝桥杯算法训练VIP-字符串编辑 摘要:C++ string 自带的各种成员函数很方便,直接用就行。#include<bits/stdc++.h> using namespace std; int main(){ stri…… 题解列表 2021年12月21日 0 点赞 0 评论 162 浏览 评分: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