Ruby Language
임의의 숫자 생성
수색…
소개
루비에서 난수를 생성하는 법.
비고
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