Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102266 李超杰 求最大值 Python3 Accepted 36 MS 3748 KB 71 2024-12-21 14:37:15

Tests(1/1):


Code:

b=[] for i in range(10): a=int(input()) b.append(a) print(max(b))