大小写转换 (C语言代码) 摘要:解题思路:简单写写,参考assic表注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[150]; int l,i; whi…… 题解列表 2019年04月23日 0 点赞 0 评论 634 浏览 评分:0.0
大小写转换-题解(C语言代码) 摘要: ```c #include #include #include int main(int argc, const char *argv[]) { int i, n…… 题解列表 2019年11月21日 0 点赞 0 评论 1149 浏览 评分:0.0
大小写转换-题解(Python代码) 摘要:凑字数凑字数凑字数凑字数 ```python while True: s=input() if s=="End of file": break pr…… 题解列表 2020年04月13日 1 点赞 1 评论 984 浏览 评分: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 评论 1360 浏览 评分:6.0
大小写转换 (Java代码) 摘要:解题思路:String 方法中有s.toUpperCase();方法,将小写字母转换成大写注意事项:无参考代码:import java.util.Scanner; public class Ma…… 题解列表 2018年04月21日 1 点赞 0 评论 1216 浏览 评分:6.0
我写比较简单getline(cin,s)运用一下就行了!1204: 大小写转换 摘要:##1204: 大小写转换 ####一如既往的秒杀题,就是这个优质题解到底怎么申请啊!我想要优质题解:tw-1f367: ```cpp #include using namespace std…… 题解列表 2022年12月30日 0 点赞 0 评论 343 浏览 评分:6.0
大小写转换 (C语言代码) 摘要:解题思路: 一边输入一边输出,输出时注意将小写变为大写即可,英文字母小写变为大写只需要减32即可注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int m…… 题解列表 2018年07月29日 0 点赞 1 评论 490 浏览 评分:6.0
Manchester-【大小写转换】 摘要:#### 解题思路: 小写字母ascii值减去与其对应的大写字母的ascii值等于32。 输入一个字符串。 循环遍历每一个字符,是小写字母则输出对应的大写字母。 …… 题解列表 2020年04月19日 0 点赞 0 评论 814 浏览 评分:6.7
大小写转换-题解(C语言代码)值得推荐 摘要: #include #include int main() { char x[500]; int i,j,k; while(ge…… 题解列表 2019年12月01日 0 点赞 0 评论 1136 浏览 评分:7.3