Lua math.fmodの小数点以下の桁数問題
2022-02-10 17:07:27
Lua math.fmod uses the following decimals.
--Returns the remainder of the division of x by y.
function math.fmod (x, y) end //Take the modulo operation
Here you need to pay attention to decimals, see the following two examples.
1.
local x = math.fmod(15, 4)
print(x)
Result: 4
2.
local x = math.fmod(15.3, 4)
print(x)
Result: 3.3
3.
local x = math.fmod(15, 4.1)
print(x)
Result: 2.7
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン