“comment utiliser math.random ()” Réponses codées

js aléatoire int

function getRandomInt(min, max) {
    min = Math.ceil(min);
    max = Math.floor(max);
    return Math.floor(Math.random() * (max - min + 1)) + min;
}
JonnyG

comment utiliser math.random ()

local number = math.random(1, 10)
# change 1 to be the smallest possible number
# change 10 to the be the biggest possible number
panda

Réponses similaires à “comment utiliser math.random ()”

Questions similaires à “comment utiliser math.random ()”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code