“nombre aléatoire lua” Réponses codées

Comment obtenir un nombre aléatoire dans 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 Nombre aléatoire

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

nombre aléatoire lua

math.random()
number = math.random(70, 100) --Pick a Number between 70  and 100 
print (number)  --Print the Number
Rexxy Foxxy

Lua Nombres aléatoires Impression

local randomnumber = Math.Random(1, 10) -this is a random number between 1 and 10
local canprint = True
local count = 0

while canprint do --gonna loop when canprint is true
    Print(randomnumber) --gonna print random number
    wait(1) --waiting one sec
    count = count + 1 --gonna count to one. it will say that we have done it 1 time already
    if count == 10 then --if we print it 10 times it will count canprint as false
        canprint = false        
dl.idiot..

Réponses similaires à “nombre aléatoire lua”

Questions similaires à “nombre aléatoire lua”

Plus de réponses similaires à “nombre aléatoire lua” dans Lua

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code