如何做一个循环模拟的游戏
如何编写一个由循环模拟的游戏,在该循环中人们必须重复进行,直到到达或通过 80 方格为止?我正在做一条蛇&天梯游戏,需要编写一段代码来实现这种情况
how to do program a game that is simulated by a loop in which people has to repeat goes for as long as it takes to get out that it reach or pass square 80? I am doing a snake & ladder game and need to write a code that will allow this to happen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用带有退出条件的循环来检查玩家是否已到达 80 格或以其他方式获胜。
javascript 中的循环,C++ 中的循环 :D
You need to use a loop with an exit condition that checks if a player has reached square 80 or otherwise won.
loops in javascript, loops in C++ :D