Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145593 伊建润 字符转换 C++ Accepted 0 MS 264 KB 210 2026-01-25 16:49:14

Tests(1/1):


Code:

#include <iostream> #include <cctype> int main() { char ch; std::cin >> ch; if (std::isupper(ch)) { ch = std::tolower(ch); } std::cout << ch << std::endl; return 0; }