蓝桥杯算法训练VIP-字符串编辑-题解(C++代码)函数加C++的string的函数 摘要:```cpp #include #include #include using namespace std; void Del(string &str,char b) { strin…… 题解列表 2020年10月12日 0 点赞 0 评论 338 浏览 评分: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 评论 392 浏览 评分:6.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 评论 238 浏览 评分:0.0
字符串编辑 摘要:解题思路:swicth语句进行操作选项注意事项:参考代码:#include<stdio.h>#include<string.h>void del(char *ch,char c){ int i,key…… 题解列表 2021年05月12日 0 点赞 0 评论 183 浏览 评分:0.0
这题在输入命令时,不要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 评论 445 浏览 评分:9.9
蓝桥杯算法训练VIP-字符串编辑-题解 摘要:```cpp 方法:用到string中的三个函数 #include using namespace std; int main() { string s; int num = 0; …… 题解列表 2021年05月22日 0 点赞 0 评论 437 浏览 评分:9.9
蓝桥杯算法训练VIP-字符串编辑 摘要:解题思路:报复社会注意事项:这个代码会显示答案错误,但是我试过,似乎没得问题参考代码:#include<stdio.h>#include<string.h>int main(){ char a[40]…… 题解列表 2021年12月13日 0 点赞 0 评论 253 浏览 评分:0.0
1621: 蓝桥杯算法训练VIP-字符串编辑 摘要:C++ string 自带的各种成员函数很方便,直接用就行。#include<bits/stdc++.h> using namespace std; int main(){ stri…… 题解列表 2021年12月21日 0 点赞 0 评论 163 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑 (C++代码)STL字符串和switch语句 摘要:解题思路:按照题目要求一步步编写即可注意事项:输入的时候需要注意格式参考代码:#include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2022年01月19日 0 点赞 0 评论 147 浏览 评分:0.0
C++String类题解 摘要:解题思路:没啥思路,一步步来,我的代码应该还是很简单的注意事项:注意第一步要插入到a1前面而不是后面,删除操作需要从后往前遍历参考代码:#include<bits/stdc++.h>using nam…… 题解列表 2022年02月24日 0 点赞 0 评论 252 浏览 评分:9.9