“Cómo usar Math.Random ()” Código de respuesta

JS Random int

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

Cómo usar 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

Respuestas similares a “Cómo usar Math.Random ()”

Preguntas similares a “Cómo usar Math.Random ()”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código