Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155821 吴梓滔 大写转小写 C++ Accepted 1 MS 196 KB 257 2026-06-14 09:32:49

Tests(1/1):


Code:

#include <stdio.h> #include <ctype.h> int main() { char input_char; scanf("%c", &input_char); if (isupper(input_char)) { printf("%c\n", tolower(input_char)); } else { printf("n"); } return 0; }