如何做一个循环模拟的游戏

发布于 2024-10-18 07:44:40 字数 84 浏览 6 评论 0原文

如何编写一个由循环模拟的游戏,在该循环中人们必须重复进行,直到到达或通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叹倦 2024-10-25 07:44:40

您需要使用带有退出条件的循环来检查玩家是否已到达 80 格或以其他方式获胜。

while ( !hasPlayerWon() ) {

    //continue game

}

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.

while ( !hasPlayerWon() ) {

    //continue game

}

loops in javascript, loops in C++ :D

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文