编写题解 2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月22日 0 点赞 0 评论 165 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月18日 0 点赞 0 评论 100 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string s…… 题解列表 2024年07月13日 0 点赞 0 评论 157 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;char …… 题解列表 2024年07月11日 0 点赞 0 评论 113 浏览 评分:0.0
c++字符串简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string str; getline(cin,str); for(a…… 题解列表 2023年10月31日 0 点赞 0 评论 132 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[100000];int main(){ cin>>s; …… 题解列表 2023年10月28日 0 点赞 0 评论 93 浏览 评分:0.0
第十三次作业2题 摘要:解题思路:利用桶排序思想计数注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[100000];int main(){ …… 题解列表 2023年10月28日 0 点赞 0 评论 88 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str; cin>>st…… 题解列表 2023年10月27日 0 点赞 0 评论 61 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:各个转换就行了。注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string a; …… 题解列表 2022年07月08日 0 点赞 0 评论 266 浏览 评分:9.9
蓝桥杯算法训练-大小写转换-题解(C++代码)库函数~ 摘要:```cpp #include using namespace std; int main() { string s; cin >> s; for (int i = 0, le…… 题解列表 2020年12月22日 0 点赞 0 评论 461 浏览 评分:9.9