大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int k,i; while(scanf("%s"…… 题解列表 2019年04月22日 0 点赞 0 评论 484 浏览 评分:0.0
大小写转换-题解(Python代码) 摘要:凑字数凑字数凑字数凑字数 ```python while True: s=input() if s=="End of file": break pr…… 题解列表 2020年04月13日 1 点赞 1 评论 861 浏览 评分:4.3
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int i,m; while(scanf("%s",…… 题解列表 2017年12月13日 3 点赞 1 评论 1290 浏览 评分:6.0
大小写转换 (Java代码) 摘要:解题思路:String 方法中有s.toUpperCase();方法,将小写字母转换成大写注意事项:无参考代码:import java.util.Scanner; public class Ma…… 题解列表 2018年04月21日 1 点赞 0 评论 1105 浏览 评分:6.0
大小写转换 (C语言代码) 摘要:解题思路: 一边输入一边输出,输出时注意将小写变为大写即可,英文字母小写变为大写只需要减32即可注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int m…… 题解列表 2018年07月29日 0 点赞 1 评论 435 浏览 评分:6.0
我写比较简单getline(cin,s)运用一下就行了!1204: 大小写转换 摘要:##1204: 大小写转换 ####一如既往的秒杀题,就是这个优质题解到底怎么申请啊!我想要优质题解:tw-1f367: ```cpp #include using namespace std…… 题解列表 2022年12月30日 0 点赞 0 评论 263 浏览 评分:6.0
Manchester-【大小写转换】 摘要:#### 解题思路: 小写字母ascii值减去与其对应的大写字母的ascii值等于32。 输入一个字符串。 循环遍历每一个字符,是小写字母则输出对应的大写字母。 …… 题解列表 2020年04月19日 0 点赞 0 评论 718 浏览 评分:6.7
大小写转换-题解(C语言代码)值得推荐 摘要: #include #include int main() { char x[500]; int i,j,k; while(ge…… 题解列表 2019年12月01日 0 点赞 0 评论 1011 浏览 评分:7.3
优质题解 大小写转换-题解(C语言代码)简单易懂 摘要:**解题思路:** 利用getchar或scanf循环读取字符串或字符,如果是小写字符则转化为大写字符,当输入读到换行符时输出读入的内容,输入以End of file为止。 **函数用法:** …… 题解列表 2020年05月04日 0 点赞 0 评论 1768 浏览 评分:9.8