Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
92787
Run ID
作者
问题
语言
测评结果
Time
Memory
代码长度
提交时间
92787
余泽越
字符转换
Python3
Accepted
34 MS
3728 KB
71
2024-10-06 14:34:35
Tests(1/1):
Code:
x = ord(input()) if x < 91: print(chr(x+32)) else: print(x)