Advertisement
wwwRong

guess number with goto (lua)

Oct 28th, 2021
1,359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.62 KB | None | 0 0
  1. --[[
  2. เลขเข้าวิน guess number
  3. ]]
  4. local min, max = 0, 99
  5. math.randomseed(os.time())
  6. local number = math.random(0, 99)
  7. local guess
  8.  
  9. ::start::
  10. print("เลือกเลขระหว่าง "..min.." กับ "..max)
  11. guess = math.tointeger(io.read())
  12. if guess then
  13.   if guess == number then
  14.     print "ถูกต้องนะคร้าบ!!!"
  15.     os.exit()
  16.   end
  17.   if guess < number then
  18.     print(guess .." น้อยไปครับ")
  19.     min = guess + 1
  20.   end
  21.   if guess > number then
  22.     print(guess .." มากไปครับ")
  23.     max = guess - 1
  24.   end
  25. end
  26. goto start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement