gpt4 book ai didi

lua - 我怎样才能从lua中的 float 中只得到小数?

转载 作者:行者123 更新时间:2023-12-01 16:41:14 26 4
gpt4 key购买 nike

我如何才能做到以下几点?

local d = getdecimal(4.2) --> .2

最佳答案

假设您只处理大于 0 的数字,模数是最好的方法:

print(4.2%1)

否则数学库中的 fmod 函数应该可以解决问题。
print(math.fmod(4.2,1))

关于lua - 我怎样才能从lua中的 float 中只得到小数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35121278/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com