2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[20]; int i; memset(a,0…… 题解列表 2024年11月04日 0 点赞 0 评论 111 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:s = input()t = ""for i in s: if ord('a') <= ord(i) <= ord('z'): …… 题解列表 2024年08月01日 0 点赞 0 评论 106 浏览 评分:0.0
编写题解 2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月22日 0 点赞 0 评论 164 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月18日 0 点赞 0 评论 99 浏览 评分: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
不用ASCII码(Java代码) 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年06月15日 0 点赞 0 评论 100 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:参考代码:s = list(input()) for i in range(len(s)): if s[i].isupper(): s[i] = s[i].lower()…… 题解列表 2024年03月24日 0 点赞 0 评论 219 浏览 评分:0.0
大小写转换python标准题解 摘要:解题思路:注意事项:参考代码:def transform(astring): result='' for char in astring: if …… 题解列表 2024年02月24日 0 点赞 0 评论 111 浏览 评分:9.9
最简单易懂的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 评论 142 浏览 评分:0.0