Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94144 余泽越 08大小写转换 Python3 Accepted 43 MS 3748 KB 107 2024-10-19 19:39: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))