這篇文章主要介紹了Lua math.fmod使用時的小數問題,math.fmod用於取模運算,使用小數時可能會遇到不可預料的結果,所以應該避免使用小數,需要的朋友可以參考下
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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