编写题解 1224: 整除的尾数 摘要:解题思路:注意事项:参考代码:while True: a,b=map(int,input().split()) if a==0 and b==0: break …… 题解列表 2022年02月24日 0 点赞 0 评论 150 浏览 评分:0.0
整除的尾数-题解(Python代码) 摘要:```python while True: m,n=map(int,input().split()) if m==0 and n==0: break …… 题解列表 2020年04月13日 0 点赞 0 评论 622 浏览 评分:0.0
整除的尾数-题解(Python代码) 摘要:```python while True: ipt = input().split() m = int(ipt[0]) n = int(ipt[1]) if …… 题解列表 2020年03月24日 0 点赞 0 评论 479 浏览 评分:0.0