优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:a=int(input())b=a%2if b==0: print("even")else : print("odd")…… 题解列表 2024年07月23日 0 点赞 0 评论 143 浏览 评分:9.9
编写题解 2780: 奇偶数判断 摘要:解题思路:注意事项:参考代码:n=int(input()) if n%2!=0: print('odd') else: print('even'…… 题解列表 2022年10月18日 0 点赞 0 评论 1183 浏览 评分:9.9