编写题解 1124: C语言训练-大、小写问题 摘要:解题思路:使用了io流,比Scanner有较好的运行效率。可能ACM不给用,慎用慎用注意事项:使用了io流,可能ACM不给用,慎用慎用参考代码:import java.io.BufferedReade…… 题解列表 2022年12月22日 0 点赞 0 评论 84 浏览 评分:9.9
1124: C语言训练-大、小写问题 摘要:```cpp #include int main() { char s[1000]; gets(s); int len1=strlen(s); for(int i=0;i='A'…… 题解列表 2022年12月06日 0 点赞 0 评论 170 浏览 评分:9.9
C++代码,需要注意当输入回车时表示输入结束 摘要:参考代码:#include<string>using namespace std;int main(){ string s; getline(cin, s); for (int i = 0; i < …… 题解列表 2022年12月03日 0 点赞 0 评论 91 浏览 评分:0.0
大、小写问题 摘要:解题思路:注意事项:next()读取到空格就会结束,next Line()不会;参考代码:import java.util.Scanner;public class Main { public sta…… 题解列表 2022年11月06日 0 点赞 0 评论 81 浏览 评分:0.0
C语言训练-大、小写问题(C++简单) 摘要:#include<iostream> using namespace std; int main() { char a[20]; cin.getline(a,20); …… 题解列表 2022年10月26日 0 点赞 0 评论 195 浏览 评分:9.9
1124-大、小写问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main() //该段代码无法通过,显示答案错误。D…… 题解列表 2022年10月07日 0 点赞 0 评论 56 浏览 评分:0.0
1124: C语言训练-大、小写问题 摘要:```cpp #include #include using namespace std; int main() { char ch[101]; gets(ch); …… 题解列表 2022年09月17日 0 点赞 0 评论 247 浏览 评分:9.9
每天都想改学python系列 之 一行流改大小写 摘要:解题思路:无注意事项:无参考代码:凑个字数要不这篇题解发不出来print(input().lower())…… 题解列表 2022年09月14日 0 点赞 0 评论 142 浏览 评分:9.9
编写题解 1124: C语言训练-大、小写问题 摘要:```c //大、小写问题 #include #include void LowerConver(){ char s[100]; gets(s); int n = strlen…… 题解列表 2022年08月30日 0 点赞 0 评论 153 浏览 评分:0.0
题解 1124: C语言训练-大、小写问题(C非常简单) 摘要:题目:输入一串字符,将其中的大写变成小写,若不为大写则原样输出解题思路:几个常见字母的ASCII码大小:A为65;a为97;0为 48。因此大写字母与其对应小写之间相差32,判断出该字符为大写字母后,…… 题解列表 2022年08月24日 0 点赞 0 评论 82 浏览 评分:0.0