题解列表
1204 大小写转换111111111
摘要:解题思路: 小转大upper()注意事项:参考代码:a=input()b=input()c=input()a1=a.upper()b1=b.upper()c1=c.upper()print(a1)pr……
[编程入门]字符串分类统计
摘要:```c#include int main() { char s[201]; scanf("%[^\n]",s); int i=0; int abc……
Power Strings 暴力解法
摘要:解题思路:看代码注意事项:无参考代码:#include<bits/stdc++.h>usingnamespacestd;boolis……
蓝桥杯2019年第十届省赛真题-修改数组 巧用STL
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"usingnamespacestd;#definell&nb……
C++构建树以及寻找树根与孩子
摘要:```cpp#include #include #include #include #include using namespace std;struct NodeTr……