Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Ada
- C
- Clojure
- C++
- C#
- C#
- D
- Dart
- Elixir
- Elixir
- Erlang
- Fortran
- Go
- Go
- Haskell
- JS
- Java
- Java
- Kotlin
- Lisp
- Lua
- Obj-C
- PHP
- Pascal
- Perl
- Python
- Ruby
- Rust
- Rust
- Scala
- Scheme
- Scheme
- Smalltalk
int pick(int a, int b)
{
int upper_bound = b - a + 1;
int max = RAND_MAX - RAND_MAX % upper_bound;
int r;
do {
r = rand();
} while (r >= max);
r = r % upper_bound;
return a + r;
}
Random.Shared.Next(a, b + 1)
.NET 6 preview 7 adds a thread-safe global Random instance that reduces the need for custom caching of Random instances.
a - 1 + :rand.uniform(b-a+1)
:crypto.rand_uniform(a, b)
crypto:rand_uniform(A, B)
Variables in Erlang must begin with capitals.
real :: c
integer :: res
call random_number(c)
res = int((b-a+1)*c)
function pick(a, b) {
return a + Math.floor(Math.random() * (b - a + 1));
}
You have to build it from a floating-point random number. It is important to use floor , not round .
fun pick(a: Int, b: Int): Int {
return (a..b).random()
}
(defun r (a b)
(+ a (random (+ 1 (- b a )))))
math.random(a, b)
Be sure to do math.randomseed(os.time()) or something equivalent somewhere up above.
a+arc4random_uniform(b+1)
Actually same as plain C, if the API is available
rand($a, $b)
my ($min, $max) = (5, 25);
my $val = $min + int(rand($max-$min));
(floor (+ a (* (add1 (- b a)) (random 1.0))))
Tested with Chez Scheme
(+ a (random (add1 (- b a))))
Tested with Chez Scheme;
a and b must be integers and written without decimal points and trailing zeros, e.g., 10 vs 10.0
a and b must be integers and written without decimal points and trailing zeros, e.g., 10 vs 10.0
(a to: b) atRandom