Answers for "random number"

13

python random number

from random import randint

print(randint(1,5))

##Possible Outputs##
#1
#2
#3
#4
#5
Posted by: Guest on March-07-2020
5

Random number

function randomInteger(min, max) {
  return Math.floor(Math.random() * (max - min + 1)) + min;
}
Posted by: Guest on May-29-2020
1

random number generator

Random rnd = new Random();
int randomNumberTo10 = rnd.nextInt(10); // 0 - 9-ig generálhat számokat, 10-et sosem generál
Posted by: Guest on October-18-2021
9

rng

Random rng = new Random()
rng.Next(min,max)
Posted by: Guest on June-10-2020
7

Random numbers

Random rnd = new Random();
int month  = rnd.Next(1, 13);  // creates a number between 1 and 12
int dice   = rnd.Next(1, 7);   // creates a number between 1 and 6
int card   = rnd.Next(52);     // creates a number between 0 and 51
Posted by: Guest on May-19-2021
3

random number

import random
random = random.randrange(0,10)
Posted by: Guest on May-28-2021

Browse Popular Code Answers by Language