c++字符串简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string str; getline(cin,str); for(a…… 题解列表 2023年10月31日 0 点赞 0 评论 131 浏览 评分: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
第十三次作业2题 摘要:解题思路:利用桶排序思想计数注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[100000];int main(){ …… 题解列表 2023年10月28日 0 点赞 0 评论 88 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str; cin>>st…… 题解列表 2023年10月27日 0 点赞 0 评论 61 浏览 评分:0.0
蓝桥杯算法训练-大小写转换 摘要:解题思路: a的ASCII码:97 A的ASCII码:65 差为32 参考代码: ```c #include #include int main() { char a[20]…… 题解列表 2023年09月20日 0 点赞 0 评论 143 浏览 评分:0.0
蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[10000]; gets(s); for(i…… 题解列表 2023年08月17日 0 点赞 0 评论 152 浏览 评分:0.0
编写题解 2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:库函数<ctype.h>的使用注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>void change(cha…… 题解列表 2023年01月08日 0 点赞 0 评论 191 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:各个转换就行了。注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string a; …… 题解列表 2022年07月08日 0 点赞 0 评论 266 浏览 评分:9.9
大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main() { char a[20]; gets(a); for (int i = 0; …… 题解列表 2022年02月06日 0 点赞 0 评论 319 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:n = input() for i in n: if i.isupper(): print(i.lower(),end=''…… 题解列表 2022年01月29日 0 点赞 0 评论 296 浏览 评分:9.9