gpt4 book ai didi

ruby - 带小数位的范围

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

如何在 ruby​​ 中检查带小数位的范围?

我想在 ruby​​ 中过滤 9.74 - 9.78 之间的数组

if (9.74...9.78) == amounts
count += 1
end

这好像不行

最佳答案

使用 Range#cover 执行此操作:

if (9.74...9.78).cover? amounts
count += 1
end

示例:

p (9.74...9.78).cover? 9.75 # => true
p (9.74...9.78).cover? 9.79 # => false

按照@m_x 的建议更新

# will give you the element in the range
array.select{ |item| (9.74..9.78).cover? item }
# will give you the element count in the array belongs to the range
array.count{ |item| (9.74..9.78).cover? item }

关于ruby - 带小数位的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19816200/

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