蓝桥杯算法训练-大小写转换-题解(C++代码) 摘要:不会的小伙伴来看看哦! 题目:编写一个程序,输入一个字符串(长度不超过20),然后把这个字符串内的每一个字符进行大小写变换,即将大写字母变成小写,小写字母变成大写,然后把这个新的字符串输出。 这题…… 题解列表 2020年04月03日 0 点赞 1 评论 577 浏览 评分:9.9
蓝桥杯算法训练-大小写转换-题解(C语言代码) 摘要: #include #include int main(){ char a[20]; int i; gets(a); fo…… 题解列表 2020年03月16日 0 点赞 0 评论 1247 浏览 评分:9.4
编写题解 2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月22日 0 点赞 0 评论 371 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:s = input()t = ""for i in s: if ord('a') <= ord(i) <= ord('z'): …… 题解列表 2024年08月01日 0 点赞 0 评论 157 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[20]; int i; memset(a,0…… 题解列表 2024年11月04日 0 点赞 0 评论 187 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月18日 0 点赞 0 评论 144 浏览 评分:0.0
蓝桥杯算法训练-大小写转换-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2020年02月29日 0 点赞 0 评论 548 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string s…… 题解列表 2024年07月13日 0 点赞 0 评论 195 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;char …… 题解列表 2024年07月11日 0 点赞 0 评论 134 浏览 评分:0.0
不用ASCII码(Java代码) 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年06月15日 0 点赞 0 评论 138 浏览 评分:0.0