如何生成介于0和n之间的随机数?


当前回答

尝试array#shuffle方法进行随机化

array = (1..10).to_a
array.shuffle.first

其他回答

在ruby中获取随机数的简单方法是,

def random    
  (1..10).to_a.sample.to_s
end

范围=10..50

兰特(范围)

or

采样范围

or

range.to_a.shuffle(这将对整个数组进行随机排序,您可以从这个数组中按第一个或最后一个或任意一个选择随机数)

嗯,我想通了。显然有一个内置(?)函数叫做rand:

rand(n + 1)

如果有人回答了更详细的答案,我会将其标记为正确答案。

可以使用rand方法生成随机数。传递给rand方法的参数应为整数或范围,并返回范围内的相应随机数:

rand(9)       # this generates a number between 0 to 8
rand(0 .. 9)  # this generates a number between 0 to 9
rand(1 .. 50) # this generates a number between 1 to 50
#rand(m .. n) # m is the start of the number range, n is the end of number range

你可以做rand(范围)

x = rand(1..5)