2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;char …… 题解列表 2024年07月11日 0 点赞 0 评论 340 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string s…… 题解列表 2024年07月13日 0 点赞 0 评论 398 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月18日 0 点赞 0 评论 360 浏览 评分:0.0
编写题解 2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月22日 0 点赞 0 评论 667 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:s = input()t = ""for i in s: if ord('a') <= ord(i) <= ord('z'): …… 题解列表 2024年08月01日 0 点赞 0 评论 458 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[20]; int i; memset(a,0…… 题解列表 2024年11月04日 0 点赞 0 评论 394 浏览 评分:0.0
题解 2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ strin…… 题解列表 2025年04月08日 0 点赞 0 评论 253 浏览 评分:0.0
莉露C语言编写题解 2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:65-90,97-122,差32,直接写'a'也行注意事项:printf("%s\n",str);参考代码:#include<stdio.h>…… 题解列表 2026年03月29日 0 点赞 0 评论 48 浏览 评分:0.0
大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main() { char a[20]; gets(a); for (int i = 0; …… 题解列表 2022年02月06日 0 点赞 0 评论 607 浏览 评分:0.0
编写题解 2236: 蓝桥杯算法训练-大小写转换(python) 摘要:解题思路:注意事项:参考代码:a=input()s=""for i in a : if i>='A' and i<='Z': s+=chr(ord(…… 题解列表 2022年01月11日 0 点赞 0 评论 427 浏览 评分:0.0