蓝桥杯算法训练-大小写转换 摘要:解题思路: a的ASCII码:97 A的ASCII码:65 差为32 参考代码: ```c #include #include int main() { char a[20]…… 题解列表 2023年09月20日 0 点赞 0 评论 143 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str; cin>>st…… 题解列表 2023年10月27日 0 点赞 0 评论 61 浏览 评分: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 <bits/stdc++.h>using namespace std;char s[100000];int main(){ cin>>s; …… 题解列表 2023年10月28日 0 点赞 0 评论 93 浏览 评分: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
最简单易懂的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 评论 143 浏览 评分:0.0
大小写转换python标准题解 摘要:解题思路:注意事项:参考代码:def transform(astring): result='' for char in astring: if …… 题解列表 2024年02月24日 0 点赞 0 评论 111 浏览 评分:9.9
2236: 蓝桥杯算法训练-大小写转换 摘要:参考代码:s = list(input()) for i in range(len(s)): if s[i].isupper(): s[i] = s[i].lower()…… 题解列表 2024年03月24日 0 点赞 0 评论 220 浏览 评分: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: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;char …… 题解列表 2024年07月11日 0 点赞 0 评论 113 浏览 评分:0.0