Posts pythonTip 81 买苹果
Post
Cancel

pythonTip 81 买苹果

题目描述: 小明的妈妈买了N个苹果,想把它们都分给她的M个孩子。为了公平起见,她想让所有的孩子都分到一样多的苹果。那么她至少要再买多少个苹果呢? 如:N=3, M=1, 则输出0 N=3,M=2,则输出1

示例: 输入:N = 3 M = 1 输出: 0

分析: 数学题,见代码。

代码:

1
print(M - (N%M) if N % M else 0)
This post is licensed under CC BY 4.0 by the author.
Trending Tags
Contents

pythonTip 80 单词接龙

pythonTip 82 数字漩涡

Trending Tags