Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94109 余泽越 07大小写转换 Python3 Accepted 41 MS 3748 KB 109 2024-10-19 19:15:32

Tests(10/10):


Code:

a = input() b = ord(a) if b >= 97 and b<= 97+26: print(chr(b-32)) else: print(chr(b+32))