酷代码 AI
菜单
服务商

C++ 助力小核桃:将阳玉智能码字符串全转小写字母

```cpp #include <iostream> #include <string> #include <cctype> int main() { std::string input; std::cin >> input; for (char &c : input) { c = std::tolower(c); } std::cout << input << std::endl; return 0; } ``` ######[AI问答 | 74点数解答 | 2026-01-11 13:54:30]

相关提问
本站限时免费提问中
实用工具查看更多
Linux在线手册 [开发类]
Jquery在线手册 [开发类]
今日油价 [生活类]
图片互转base64 [开发类]
时间转换器 [开发类]