1204 大小写转换111111111 摘要:解题思路: 小转大upper()注意事项:参考代码:a=input()b=input()c=input()a1=a.upper()b1=b.upper()c1=c.upper()print(a1)pr…… 题解列表 2025年03月09日 0 点赞 0 评论 107 浏览 评分:0.0
大小写转换 摘要:解题思路:模拟注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;…… 题解列表 2025年02月03日 0 点赞 0 评论 125 浏览 评分:0.0
最简单易懂的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>int main(){ char a[80]; …… 题解列表 2024年11月21日 0 点赞 0 评论 198 浏览 评分:0.0
1204: 大小写转换 摘要:核心: name = 'Hello World' print(name.lower()) # 大写转小写 print(name.upper()) # 小写转大写 …… 题解列表 2024年08月18日 0 点赞 0 评论 338 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年02月03日 0 点赞 0 评论 135 浏览 评分:9.9
大小写转换(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100]; while(gets(ch)){//while多…… 题解列表 2023年11月25日 0 点赞 0 评论 226 浏览 评分:0.0
c++范围for简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<sstream>#include<iomanip>using namespace std;int main(){ …… 题解列表 2023年10月25日 0 点赞 0 评论 189 浏览 评分:0.0
大小写转换(乐,误会了“输入以“End of file”结束。”这句话,还以为输出这个字符串停止输入) 摘要:参考代码: ```c #include #include int main() { char a[80]={'\0'}; while(~scanf("%s",a)) { …… 题解列表 2023年09月22日 0 点赞 0 评论 190 浏览 评分:0.0
大小写转换(c语言代码) 摘要:```c #include #include void toUp(char* strs); int main() { char strs[81] = { 0 }; while…… 题解列表 2023年04月29日 0 点赞 1 评论 361 浏览 评分:9.9
编写题解 1204: 大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int i=0,l; while(gets(a)) …… 题解列表 2023年01月04日 0 点赞 0 评论 110 浏览 评分:0.0