Ruby Language
乱数を生成する
サーチ…
前書き
Rubyで乱数を生成する方法。
備考
Random :: DEFAULT.randのエイリアス。これは、真のランダム性に近似する擬似乱数ジェネレータを使用します
6面ダイ
# Roll a 6 sided die, rand(6) returns a number from 0 to 5 inclusive
dice_roll_result = 1 + rand(6)
範囲から乱数を生成する(包含する)
# ruby 1.92
lower_limit = 1
upper_limit = 6
Random.new.rand(lower_limit..upper_limit) # Change your range operator to suit your needs
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow