蓝桥杯算法训练VIP-字符串编辑 摘要:解题思路:报复社会注意事项:这个代码会显示答案错误,但是我试过,似乎没得问题参考代码:#include<stdio.h>#include<string.h>int main(){ char a[40]…… 题解列表 2021年12月13日 0 点赞 0 评论 308 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; char a[45]; char b[50]; int main() { …… 题解列表 2020年04月04日 0 点赞 0 评论 368 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码) 摘要:``` #include #include #include #include using namespace std; char s[45]; int main(vo…… 题解列表 2020年06月19日 0 点赞 0 评论 361 浏览 评分:0.0
字符串编辑 摘要:解题思路:swicth语句进行操作选项注意事项:参考代码:#include<stdio.h>#include<string.h>void del(char *ch,char c){ int i,key…… 题解列表 2021年05月12日 0 点赞 0 评论 232 浏览 评分: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 评论 270 浏览 评分: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 评论 470 浏览 评分:0.0