Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- เลขเข้าวิน guess number
- ]]
- local min, max = 0, 99
- math.randomseed(os.time())
- local number = math.random(0, 99)
- local guess
- ::start::
- print("เลือกเลขระหว่าง "..min.." กับ "..max)
- guess = math.tointeger(io.read())
- if guess then
- if guess == number then
- print "ถูกต้องนะคร้าบ!!!"
- os.exit()
- end
- if guess < number then
- print(guess .." น้อยไปครับ")
- min = guess + 1
- end
- if guess > number then
- print(guess .." มากไปครับ")
- max = guess - 1
- end
- end
- goto start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement