大小写转换 (Java代码) 摘要:解题思路:String 方法中有s.toUpperCase();方法,将小写字母转换成大写注意事项:无参考代码:import java.util.Scanner; public class Ma…… 题解列表 2018年04月21日 1 点赞 0 评论 1216 浏览 评分:6.0
大小写转换-题解(Python代码) 摘要:凑字数凑字数凑字数凑字数 ```python while True: s=input() if s=="End of file": break pr…… 题解列表 2020年04月13日 1 点赞 1 评论 984 浏览 评分:4.3
大小写转换 摘要:解题思路:模拟注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;…… 题解列表 2025年02月03日 1 点赞 0 评论 362 浏览 评分:0.0
小写转大写超简单! 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char s[81];//保存输入的字符串 …… 题解列表 2022年05月10日 0 点赞 0 评论 261 浏览 评分:0.0
2025/8/18刷题记录 摘要:解题思路:End of file意思是输入不为null注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){&nb…… 题解列表 2025年08月18日 0 点赞 0 评论 61 浏览 评分:0.0
1204: 大小写转换 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char str[85] = {0}; …… 题解列表 2022年10月26日 0 点赞 0 评论 169 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; int i; while(g…… 题解列表 2017年09月08日 0 点赞 0 评论 1161 浏览 评分:0.0
大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[50]; while(gets(a)) { …… 题解列表 2022年12月22日 0 点赞 0 评论 180 浏览 评分:0.0
最基本的思路这道题 摘要:解题思路:利用不断输入想到while,然后利用字符数组将小写字母-32变成大写字母;注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ …… 题解列表 2022年12月23日 0 点赞 0 评论 201 浏览 评分:0.0
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 评论 441 浏览 评分:0.0