Run ID:155823
提交时间:2026-06-14 09:43:07
#include <stdio.h> #include <ctype.h> // 包含tolower函数 int main() { char upper; scanf("%c", &upper); char lower = tolower(upper); printf("%c\n", lower); return 0; }