3

我正在寻找一个等待命令,这样我就可以在它消失之前读取授予的访问权限。我到处找,我发现等待命令有效..但我无法添加时间,我只能等待。这是我第一次使用这个,我使用它是因为它要么是这个,要么是我正在做的事情,而前进的方式让我感到困惑。

input"Enter Password: "; pass$

realPass$="meow"

if pass$=realPass$ then goto[areTheSame]

goto[areNotTheSame]

[areNotTheSame]
print("access denied")
goto[end]

[areTheSame]
print("access granted")
wait
goto[end]

[end]
cls
4

1 回答 1

3

如果您希望它只是“等待”,您可以使用sleep

如果您想等待按键,您可以使用 Console.ReadKey() 如果您使用的是 VB。

于 2013-06-28T19:30:01.437 回答