蓝桥杯算法训练VIP-字符串编辑-题解 摘要:```cpp 方法:用到string中的三个函数 #include using namespace std; int main() { string s; int num = 0; …… 题解列表 2021年05月22日 0 点赞 0 评论 429 浏览 评分:9.9
这题在输入命令时,不要getchar 用scanf,一定要scanf(“空格%c”,e);来输入 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>void delete(char a[100],char a…… 题解列表 2021年05月18日 0 点赞 0 评论 435 浏览 评分:9.9
字符串编辑 摘要:解题思路: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-字符串编辑私以为简洁易懂的题解(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-Kirito-蓝桥杯算法训练VIP-字符串编辑-题解(C++代码)这才是真正的STL做法 摘要:参考代码:#include<iostream> #include<string> using namespace std; string s; char x,y,z; void myde…… 题解列表 2020年10月30日 0 点赞 0 评论 373 浏览 评分:6.0
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码)函数加C++的string的函数 摘要:```cpp #include #include #include using namespace std; void Del(string &str,char b) { strin…… 题解列表 2020年10月12日 0 点赞 0 评论 323 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码) 摘要:解题思路: 用string类即可,最后全替换就for循环一下吧~注意事项:参考代码:#include<bits/stdc++.h> using namespace std; in…… 题解列表 2020年09月12日 0 点赞 0 评论 131 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码)--STL做法 摘要:1.vector<char>#include<bits/stdc++.h> using namespace std; int main() { vector<char> q; …… 题解列表 2020年08月06日 0 点赞 0 评论 357 浏览 评分:9.9
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码) 摘要:``` #include #include #include #include using namespace std; char s[45]; int main(vo…… 题解列表 2020年06月19日 0 点赞 0 评论 248 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; char a[45]; char b[50]; int main() { …… 题解列表 2020年04月04日 0 点赞 0 评论 252 浏览 评分:0.0