蓝桥杯算法训练VIP-字符串编辑-题解(C++代码)(利用string里面的库函数) 摘要:#include #include #include using namespace std; int main(void) { string s,new_s; char big,sm…… 题解列表 2019年07月18日 0 点赞 0 评论 1345 浏览 评分:6.0
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码)python开荒柘 摘要:简单题,列表的应用 ```python r='' while True: t=input() if '.'in t: r+="\n" r+=t break else…… 题解列表 2020年02月06日 0 点赞 6 评论 569 浏览 评分:6.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
字符串编辑 摘要:解题思路:swicth语句进行操作选项注意事项:参考代码:#include<stdio.h>#include<string.h>void del(char *ch,char c){ int i,key…… 题解列表 2021年05月12日 0 点赞 0 评论 178 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main (){ char c[1000]; gets(c); cha…… 题解列表 2023年10月15日 0 点赞 0 评论 63 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码) 摘要:``` #include #include #include #include using namespace std; char s[45]; int main(vo…… 题解列表 2020年06月19日 0 点赞 0 评论 248 浏览 评分: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-字符串编辑-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2020年02月19日 0 点赞 0 评论 378 浏览 评分: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