编写题解 1204: 大小写转换 摘要:解题思路:注意事项:参考代码:#include<iostream>#include <iomanip>#include<ctype.h>using namespace std;int main(){ …… 题解列表 2022年03月28日 0 点赞 0 评论 228 浏览 评分:0.0
大小写转换(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100]; while(gets(ch)){//while多…… 题解列表 2023年11月25日 0 点赞 0 评论 149 浏览 评分:0.0
最基本的思路这道题 摘要:解题思路:利用不断输入想到while,然后利用字符数组将小写字母-32变成大写字母;注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ …… 题解列表 2022年12月23日 0 点赞 0 评论 72 浏览 评分:0.0
小写转大写超简单! 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char s[81];//保存输入的字符串 …… 题解列表 2022年05月10日 0 点赞 0 评论 109 浏览 评分:0.0
大小写转换 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 大小写转换 { public static void main(String[] args) { // TODO Auto-gen…… 题解列表 2018年05月11日 0 点赞 0 评论 729 浏览 评分:0.0
大小写转换 (C++代码)水一发 摘要:水起来参考代码:#include <bits/stdc++.h> using namespace std; int main(){ string str; while(getl…… 题解列表 2018年12月25日 0 点赞 0 评论 749 浏览 评分:0.0
1204: 大小写转换 摘要:核心: name = 'Hello World' print(name.lower()) # 大写转小写 print(name.upper()) # 小写转大写 …… 题解列表 2024年08月18日 0 点赞 0 评论 179 浏览 评分: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 评论 133 浏览 评分:0.0
大小写转换 摘要:解题思路:注意事项:参考代码:public class Main {public static void main(String[] args) { Scanner scanner=new Scann…… 题解列表 2022年01月10日 0 点赞 0 评论 160 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int k,i; while(scanf("%s"…… 题解列表 2019年04月22日 0 点赞 0 评论 408 浏览 评分:0.0