编写题解 1204: 大小写转换 摘要:解题思路:注意事项:参考代码:while True: try: a=input() for i in a: 题解列表 2022年02月19日 0 点赞 2 评论 419 浏览 评分:0.0
Hifipsysta-1204题-大小写转换(C++代码)cctype很简单 摘要:```cpp #include #include #include using namespace std; int main(){ string str; whil…… 题解列表 2022年01月30日 0 点赞 0 评论 406 浏览 评分:9.9
大小写转换 摘要:解题思路:注意事项:参考代码:public class Main {public static void main(String[] args) { Scanner scanner=new Scann…… 题解列表 2022年01月10日 0 点赞 0 评论 209 浏览 评分:0.0
1204: 大小写转换 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s; while(getline(cin,s…… 题解列表 2021年12月27日 0 点赞 0 评论 167 浏览 评分:0.0
大小写转换 摘要:解题思路:18:45:48注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100];int i,n;while(scan…… 题解列表 2021年12月25日 0 点赞 0 评论 178 浏览 评分:0.0
大小写转换-题解(C语言代码) 摘要:```c #include #include int main() { char ch; ch=getchar(); while(ch!=EOF) { if(ch>=…… 题解列表 2020年11月09日 0 点赞 0 评论 987 浏览 评分:9.9
大小写转换-题解(C语言代码) 摘要:对于这类题目,主要明白如何将小写字母更换为大写子母,这里以C内容作为解析 在ASCII码在ASCII码中,小写字母的ASCII码分布在第97-122位,大写字母的ASCII码分布在65-90位,前后…… 题解列表 2020年05月24日 0 点赞 0 评论 868 浏览 评分:9.9
优质题解 大小写转换-题解(C语言代码)简单易懂 摘要:**解题思路:** 利用getchar或scanf循环读取字符串或字符,如果是小写字符则转化为大写字符,当输入读到换行符时输出读入的内容,输入以End of file为止。 **函数用法:** …… 题解列表 2020年05月04日 0 点赞 0 评论 1768 浏览 评分:9.8
Manchester-【大小写转换】 摘要:#### 解题思路: 小写字母ascii值减去与其对应的大写字母的ascii值等于32。 输入一个字符串。 循环遍历每一个字符,是小写字母则输出对应的大写字母。 …… 题解列表 2020年04月19日 0 点赞 0 评论 718 浏览 评分:6.7