文章摘要
这篇文章介绍了lua编程语言中`math.fmod`函数的使用方法及其注意事项。`math.fmod`用于执行取模运算,即计算x除以y的余数。文章通过示例展示了函数在处理小数时的表现: 1. 示例1:`math.fmod(15, 4)`返回4。2. 示例2:`math.fmod(15.3, 4)`返回3.3。3. 示例3:`math.fmod(15, 4.1)`返回2.7。 文章提醒用户,在使用`math.fmod`处理小数时,结果可能与预期不同,需要注意小数的精度和计算方式。
lua math.fmod使用注意小数:
–Returns the remainder of the division of x by y.
function math.fmod (x, y) end //取模运算
lua math.fmod使用注意小数:
–Returns the remainder of the division of x by y.
function math.fmod (x, y) end //取模运算
这里需要注意小数的问题,看下面两个例子:
1、
local x=math.fmod(15, 4)
print(x)
结果:4
2、
local x=math.fmod(15.3, 4)
print(x)
结果:3.3
3、
local x=math.fmod(15, 4.1)
print(x)
结果:2.7
© 版权声明
文章版权归作者所有,未经允许请勿转载。