2236: 蓝桥杯算法训练-大小写转换 摘要:参考代码:s = list(input()) for i in range(len(s)): if s[i].isupper(): s[i] = s[i].lower()…… 题解列表 2024年03月24日 0 点赞 0 评论 403 浏览 评分:0.0
题解 2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ strin…… 题解列表 2025年04月08日 0 点赞 0 评论 41 浏览 评分:0.0
最简单易懂的C语言代码 摘要:#include int main() { char a[50]; gets(a); for(int i=0;i='A'&&a[i]='a'&&a[i]…… 题解列表 2023年11月15日 0 点赞 0 评论 180 浏览 评分:0.0
c++字符串简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string str; getline(cin,str); for(a…… 题解列表 2023年10月31日 0 点赞 0 评论 526 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[100000];int main(){ cin>>s; …… 题解列表 2023年10月28日 0 点赞 0 评论 115 浏览 评分:0.0
第十三次作业2题 摘要:解题思路:利用桶排序思想计数注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[100000];int main(){ …… 题解列表 2023年10月28日 0 点赞 0 评论 112 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str; cin>>st…… 题解列表 2023年10月27日 0 点赞 0 评论 76 浏览 评分:0.0
蓝桥杯算法训练-大小写转换 摘要:解题思路: a的ASCII码:97 A的ASCII码:65 差为32 参考代码: ```c #include #include int main() { char a[20]…… 题解列表 2023年09月20日 0 点赞 0 评论 164 浏览 评分:0.0
蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[10000]; gets(s); for(i…… 题解列表 2023年08月17日 0 点赞 0 评论 183 浏览 评分:0.0
编写题解 2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:库函数<ctype.h>的使用注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>void change(cha…… 题解列表 2023年01月08日 0 点赞 0 评论 344 浏览 评分:0.0