编写题解 2785: 判断一个数能否同时被3和5整除 摘要:解题思路:注意事项:参考代码:n=int(input())if n%3==0 and n%5==0: print("YES")else : &…… 题解列表 2026年04月26日 0 点赞 0 评论 521 浏览 评分:0.0