repeat
io.write("Enter your guess : ")
-- Gets input from the user
guess = io.read()
-- Either surround the number with quotes, or convert the string into
-- a number
until tonumber(guess) == 15
我还尝试将io.read()
替换为os.read()
,但是它不起作用,我也不知道为什么,因为它对Derek有用。参见20:46的this video。
答案 0 :(得分:0)
根据您的名字猜测您正在使用Roblox,而不是Lua解释器?
模块io
和os
在Robolox中不可用。
我想您从一开始就没有遵循youtube教程。 使用前几分钟显示的标准Lua发行版本,所提供的代码不会出现任何问题。
如果您需要在Roblox中输入用户信息,请参考Roblox UserInputService。