大小写转换 (Java代码) 摘要:解题思路:String 方法中有s.toUpperCase();方法,将小写字母转换成大写注意事项:无参考代码:import java.util.Scanner; public class Ma…… 题解列表 2018年04月21日 1 点赞 0 评论 1105 浏览 评分:6.0
大小写转换-题解(Python代码) 摘要:凑字数凑字数凑字数凑字数 ```python while True: s=input() if s=="End of file": break pr…… 题解列表 2020年04月13日 1 点赞 1 评论 861 浏览 评分:4.3
编写题解 1204: 大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int i=0,l; while(gets(a)) …… 题解列表 2023年01月04日 0 点赞 0 评论 163 浏览 评分:0.0
大小写转换(乐,误会了“输入以“End of file”结束。”这句话,还以为输出这个字符串停止输入) 摘要:参考代码: ```c #include #include int main() { char a[80]={'\0'}; while(~scanf("%s",a)) { …… 题解列表 2023年09月22日 0 点赞 0 评论 237 浏览 评分:0.0
c++范围for简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<sstream>#include<iomanip>using namespace std;int main(){ …… 题解列表 2023年10月25日 0 点赞 0 评论 295 浏览 评分:0.0
大小写转换(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100]; while(gets(ch)){//while多…… 题解列表 2023年11月25日 0 点赞 0 评论 293 浏览 评分:0.0
1204: 大小写转换 摘要:核心: name = 'Hello World' print(name.lower()) # 大写转小写 print(name.upper()) # 小写转大写 …… 题解列表 2024年08月18日 0 点赞 0 评论 436 浏览 评分:0.0
最简单易懂的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>int main(){ char a[80]; …… 题解列表 2024年11月21日 0 点赞 0 评论 256 浏览 评分:0.0
最基本的思路这道题 摘要:解题思路:利用不断输入想到while,然后利用字符数组将小写字母-32变成大写字母;注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ …… 题解列表 2022年12月23日 0 点赞 0 评论 137 浏览 评分:0.0
大小写转换 摘要:解题思路:模拟注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;…… 题解列表 2025年02月03日 0 点赞 0 评论 163 浏览 评分:0.0