c++范围for简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<sstream>#include<iomanip>using namespace std;int main(){ …… 题解列表 2023年10月25日 0 点赞 0 评论 104 浏览 评分:0.0
1204: 大小写转换 摘要:放心,题目的End of file其实没什么用,可以不处理 ```cpp #include #include using namespace std; int main() { …… 题解列表 2023年01月01日 0 点赞 0 评论 238 浏览 评分:9.9
小写转大写超简单! 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char s[81];//保存输入的字符串 …… 题解列表 2022年05月10日 0 点赞 0 评论 104 浏览 评分:0.0
题解 大小写转换 简单易懂 摘要:解题思路: 1.利用while函数输入字符串s 2.当输入的字符串为 End of file 跳出循环 3.用islower函数用于判断字符是否为小写字母(a-z) 4.int toupper…… 题解列表 2022年04月24日 0 点赞 0 评论 185 浏览 评分:0.0
编写题解 1204: 大小写转换 摘要:解题思路:注意事项:参考代码:#include<iostream>#include <iomanip>#include<ctype.h>using namespace std;int main(){ …… 题解列表 2022年03月28日 0 点赞 0 评论 224 浏览 评分:0.0
Hifipsysta-1204题-大小写转换(C++代码)cctype很简单 摘要:```cpp #include #include #include using namespace std; int main(){ string str; whil…… 题解列表 2022年01月30日 0 点赞 0 评论 364 浏览 评分:9.9
1204: 大小写转换 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s; while(getline(cin,s…… 题解列表 2021年12月27日 0 点赞 0 评论 125 浏览 评分: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/C++代码)(简单版) 摘要:#### 解题思路: 该题主要用到了toupper函数 transform(s.begin(),s.end(),s.begin(),::toupper);//小写变成大写 transform…… 题解列表 2020年02月10日 0 点赞 0 评论 1183 浏览 评分:9.9