Is there a wait command in basic?
我在找一个wait命令,这样我就可以在它消失之前读取所授予的访问权限。我到处找了找,发现等待命令起作用了。但我不能增加时间,我只能等待。这是我第一次使用它,我使用它是因为它是为了我所做的事情而这样或那样,而这种方法对我来说很困惑。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 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 |
如果你想让它只是"等待",你可以使用睡眠。
如果您想等待按键,如果您使用的是VB,那么可以使用console.readkey()。