1204: 大小写转换 摘要:放心,题目的End of file其实没什么用,可以不处理 ```cpp #include #include using namespace std; int main() { …… 题解列表 2023年01月01日 0 点赞 0 评论 552 浏览 评分:9.9
大小写转换(c语言代码) 摘要:```c #include #include void toUp(char* strs); int main() { char strs[81] = { 0 }; while…… 题解列表 2023年04月29日 0 点赞 1 评论 918 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年02月03日 0 点赞 0 评论 487 浏览 评分:9.9
优质题解 大小写转换-题解(C语言代码)简单易懂 摘要:**解题思路:** 利用getchar或scanf循环读取字符串或字符,如果是小写字符则转化为大写字符,当输入读到换行符时输出读入的内容,输入以End of file为止。 **函数用法:** …… 题解列表 2020年05月04日 1 点赞 0 评论 2153 浏览 评分:9.8
大小写转换-题解(C语言代码)值得推荐 摘要: #include #include int main() { char x[500]; int i,j,k; while(ge…… 题解列表 2019年12月01日 0 点赞 0 评论 1329 浏览 评分:7.3
Manchester-【大小写转换】 摘要:#### 解题思路: 小写字母ascii值减去与其对应的大写字母的ascii值等于32。 输入一个字符串。 循环遍历每一个字符,是小写字母则输出对应的大写字母。 …… 题解列表 2020年04月19日 0 点赞 0 评论 997 浏览 评分:6.7
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int i,m; while(scanf("%s",…… 题解列表 2017年12月13日 3 点赞 1 评论 1497 浏览 评分:6.0
我写比较简单getline(cin,s)运用一下就行了!1204: 大小写转换 摘要:##1204: 大小写转换 ####一如既往的秒杀题,就是这个优质题解到底怎么申请啊!我想要优质题解:tw-1f367: ```cpp #include using namespace std…… 题解列表 2022年12月30日 0 点赞 0 评论 514 浏览 评分:6.0
大小写转换 (Java代码) 摘要:解题思路:String 方法中有s.toUpperCase();方法,将小写字母转换成大写注意事项:无参考代码:import java.util.Scanner; public class Ma…… 题解列表 2018年04月21日 1 点赞 0 评论 1609 浏览 评分:6.0