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