大小写转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include<string> using namespace std; int main() { str…… 题解列表 2018年05月17日 0 点赞 0 评论 725 浏览 评分:9.9
大小写转换 (C++代码)完全C++ 摘要:解题思路: 其实C++在之初更加推荐对自己的新特新使用迭代器的便利方式,所谓迭代器就是属于C++自身新模版的一种容器,旧时的容器使用iterator,新的容易定义方法用auto,据说C2…… 题解列表 2018年12月12日 0 点赞 0 评论 784 浏览 评分:9.9
大小写转换 (C++代码)水一发 摘要:水起来参考代码:#include <bits/stdc++.h> using namespace std; int main(){ string str; while(getl…… 题解列表 2018年12月25日 0 点赞 0 评论 738 浏览 评分:0.0
大小写转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<cmath> #include<algorithm> using nam…… 题解列表 2019年04月04日 0 点赞 0 评论 799 浏览 评分:0.0
优质题解 大小写转换-题解(C++代码)string+transform方法 摘要:C++ stl函数库提供了很多的方法函数 这个题目是讲小写字母转换为大写字母 直接用string + transform 就可以直接完成 ```cpp string s; tra…… 题解列表 2019年06月21日 0 点赞 0 评论 2881 浏览 评分:9.9
大小写转换-题解(C/C++代码)(简单版) 摘要:#### 解题思路: 该题主要用到了toupper函数 transform(s.begin(),s.end(),s.begin(),::toupper);//小写变成大写 transform…… 题解列表 2020年02月10日 0 点赞 0 评论 1183 浏览 评分:9.9
大小写转换-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ char a[80]; whi…… 题解列表 2020年03月20日 0 点赞 0 评论 456 浏览 评分:0.0
1204: 大小写转换 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s; while(getline(cin,s…… 题解列表 2021年12月27日 0 点赞 0 评论 125 浏览 评分: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