1621: 蓝桥杯算法训练VIP-字符串编辑 摘要:C++ string 自带的各种成员函数很方便,直接用就行。#include<bits/stdc++.h> using namespace std; int main(){ stri…… 题解列表 2021年12月21日 0 点赞 0 评论 162 浏览 评分: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-字符串编辑私以为简洁易懂的题解(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
蓝桥杯算法训练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
蓝桥杯算法训练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
Kanna-字符串编辑--string灵活使用 摘要:**C++解法** 灵活运用string 思路: string 对象 ```s``` 和 ```ans``` ```s``` 用来承载cin输入的句子(或单词) ```ans``` 在三…… 题解列表 2020年01月23日 0 点赞 1 评论 362 浏览 评分:9.5
蓝桥杯算法训练VIP-字符串编辑 (C语言代码) 摘要:解题思路: 有同学说C++看不懂,所以来一个用C语言写的程序,不过因为测试数据的问题,导致用C语言写要注意很多问题。特别是输入命令那里,我也错了很多发。通过跟大佬一起慢慢分析,找可能出现的错误。…… 题解列表 2019年04月13日 1 点赞 0 评论 833 浏览 评分:9.7
字符串编辑-题解(C语言代码)满分题解!! 摘要: #include #include int main() { char s[50]; char order,c1,c2; …… 题解列表 2020年01月01日 0 点赞 0 评论 846 浏览 评分: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