gpt4 book ai didi

Ruby:计算 float 中的数字

转载 作者:数据小太阳 更新时间:2023-10-29 07:27:49 24 4
gpt4 key购买 nike

是否有任何有值(value)的 Ruby 方法来计算 float 中的位数?另外,如何指定精确的时间 to_s float ?

最佳答案

# Number of digits

12345.23.to_s.split("").size -1 #=> 7

# The precious part

("." + 12345.23.to_s.split(".")[1]).to_f #=> .023

# I would rather used
# 12345.23 - 12345.23.to_i
# but this gives 0.22999999999563

关于Ruby:计算 float 中的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1511565/

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