“lua math.random” Code-Antworten

So erhalten Sie eine zufällige Zahl in Lua

local randomNumber1 = math.random(1, 10) --Returns a number between 1 and 10.
local randomNumber2 = math.random(10) --Also returns a number between 1 and 10.

print(randomNumber1, randomNumber2) --OUTPUT EXAMPLE: "6, 8"
Adxm

LUA Zufallszahl

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

lua math.random

local randomNumber = math.random(100)

print(randomNumber)
Red Team

Ähnliche Antworten wie “lua math.random”

Fragen ähnlich wie “lua math.random”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen