在Lua中,如何判断一个数是否能被另一个数整除?

发布于 2024-12-28 07:33:18 字数 139 浏览 1 评论 0原文

在Lua中,如何判断一个数是否能被另一个数整除?即没有余数?我只是在寻找布尔值 true 或 false。

12/6 = 2 (true)
18/6 = 3 (true)
20/6 = 3.(3) (false)

In Lua, how can I tell if a number divides evenly into another number? i.e with no remainder? I'm just looking for a boolean true or false.

12/6 = 2 (true)
18/6 = 3 (true)
20/6 = 3.(3) (false)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寻找一个思念的角度 2025-01-04 07:33:18

将除法的余数与零进行比较,如下所示:

12 % 6 == 0

18 % 6 == 0

20 % 6 ~= 0

模运算符 (%) 返回除法的余数。对于 12 和 6,它是 0,但对于 20 和 6,它是 2。

它使用的公式是:a % b == a - math.floor(a/b)*b

Compare the remainder of the division to zero, like this:

12 % 6 == 0

18 % 6 == 0

20 % 6 ~= 0

The modulus operator (%) returns the remainder of division. For 12 and 6 it is 0, but for 20 and 6 it is 2.

The formula it uses is: a % b == a - math.floor(a/b)*b

地狱即天堂 2025-01-04 07:33:18

使用模运算符的问题是,它不能正确处理负数。如果您要使用负数,请改用 math.fmod

maxtothemax@maxtothemax-mint ~ $ lua 
> return  -13%6
5
> return  13%6
1
> return math.fmod (-13, 6)
-1
> return math.fmod (13, 6)
1
> 

The problem with using the modulus operator is, it doesn't work correctly on negative numbers. If you're going to be using negative numbers, use math.fmod instead:

maxtothemax@maxtothemax-mint ~ $ lua 
> return  -13%6
5
> return  13%6
1
> return math.fmod (-13, 6)
-1
> return math.fmod (13, 6)
1
> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文