Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113213 江屹山 07大小写转换 Python3 Wrong Answer 34 MS 3732 KB 93 2025-03-15 14:23:06

Tests(2/10):


Code:

x=input() if 97<=ord(x)<=97+25: print(chr(ord(x))-32) else: print(chr(ord(x)+32))


Run Info:

------Input------
r
------Answer-----
R
------Your output-----