1204: 大小写转换 摘要:核心: name = 'Hello World' print(name.lower()) # 大写转小写 print(name.upper()) # 小写转大写 …… 题解列表 2024年08月18日 0 点赞 0 评论 162 浏览 评分:0.0
编写题解 1204: 大小写转换 摘要:解题思路:注意事项:参考代码:#include<iostream>#include <iomanip>#include<ctype.h>using namespace std;int main(){ …… 题解列表 2022年03月28日 0 点赞 0 评论 224 浏览 评分:0.0
1204: 大小写转换 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char str[85] = {0}; …… 题解列表 2022年10月26日 0 点赞 0 评论 86 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; int i; while(g…… 题解列表 2017年09月08日 0 点赞 0 评论 984 浏览 评分:0.0
大小写转换-题解(C语言代码) 摘要: ```c #include #include #include int main(int argc, const char *argv[]) { int i, n…… 题解列表 2019年11月21日 0 点赞 0 评论 470 浏览 评分:0.0
大小写转换-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ char a[80]; whi…… 题解列表 2020年03月20日 0 点赞 0 评论 456 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<ctype.h>int main(){ char a[80]; while(scanf("%s",a) != EOF)…… 题解列表 2018年03月17日 0 点赞 0 评论 758 浏览 评分:0.0
小写转大写超简单! 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char s[81];//保存输入的字符串 …… 题解列表 2022年05月10日 0 点赞 0 评论 104 浏览 评分: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 评论 128 浏览 评分:0.0
c++范围for简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<sstream>#include<iomanip>using namespace std;int main(){ …… 题解列表 2023年10月25日 0 点赞 0 评论 105 浏览 评分:0.0