Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
71941 娄瀚兮 参赛组别推荐 Python3 Accepted 38 MS 3764 KB 238 2024-04-28 19:53:27

Tests(10/10):


Code:

a = int(input()) if a < 8: print("You are too young!") elif a >= 8 and a < 12: print("Welcome to Junior Class!") elif a >= 13 and a < 18: print("Welcome to Senior Class!") elif a > 18: print("You are too old!")