题解 2764: 带余除法 摘要:##########################################a,b=map(int,input().split(" "))print(int(a/b),end=' &#…… 题解列表 2024年07月04日 1 点赞 0 评论 293 浏览 评分:0.0
编写题解 2764: 带余除法 摘要:解题思路:注意事项:除数不能为0'//'为取整除,得到商的整数部分(向下取整)参考代码:a,b=map(int,input().split())while b!=0: print…… 题解列表 2024年02月23日 0 点赞 0 评论 365 浏览 评分:6.0
编写题解 2764: 带余除法 摘要:解题思路:整除://求余:%注意事项:参考代码:a,b=map(int,input().split()) while b!=0: #当除数非0,进入while循环 print(a//b,a…… 题解列表 2022年10月18日 0 点赞 0 评论 1013 浏览 评分:9.7