“wie man math.random () verwendet” Code-Antworten

Js zufälliger int

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

wie man math.random () verwendet

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

Ähnliche Antworten wie “wie man math.random () verwendet”

Fragen ähnlich wie “wie man math.random () verwendet”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen