一个用C语言修改过的Nim游戏?

一个用c语言修改过的nim游戏?

Modified game of Nim is an optimisation games of arrays. This game predicts the winner based on the starting player and optimal moves.

Game Logic − In this game, we are given an array{}, that contains elements. There are generally two players that play the game namly player1 and player2. The aim of both is to make sure that all their numbers are removed from the array. Now, player1 has to remove all the numbers that are divisible by 3 and the player2 has to remove all the numbers that are divisible by 5. The aim is to make sure that they remove all elements optimally and find the winner in this case.

Sample

Array : {1,5, 75,2,65,7,25,6}Winner : playerB.A removes 75 -> B removes 5 -> A removes 6 -> B removes 65 -> No moves for A, B wins.

登录后复制

Code Preview

The code will find the number of elements that A can remove , number of elements that B can remove and the number of elements that they both can remove. Based on the number of the elements they both can remove the solution is found. As A removes first elements it can win even if he has to remove one element more than B. In normal case, the player with the maximum number of elements to remove wins.

PROGRAM TO FIND THE SOLUTION FOR GAME OF NIM

#include using namespace std;int main() {   int arr[] = {1,5, 75,2,65,7,25,6};   int n = sizeof(arr) / sizeof(arr[0]);   int movesA = 0, movesB = 0, movesBoth = 0;   for (int i = 0; i  movesB)         cout movesB)      cout

输出

Player 2 is the Winner

登录后复制

以上就是一个用C语言修改过的Nim游戏?的详细内容,更多请关注【创想鸟】其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2584393.html

(0)
上一篇 2025年3月6日 14:48:25
下一篇 2025年3月6日 14:48:34

AD推荐 黄金广告位招租... 更多推荐

相关推荐

  • 如何通过C++编写一个简单的贪吃蛇游戏?

    如何通过C++编写一个简单的贪吃蛇游戏? 贪吃蛇游戏是经典的游戏之一,通过控制蛇的移动来吃食物并获得分数。本文将介绍使用C++编写一个简单的贪吃蛇游戏的步骤和思路。 步骤: 引入必要的头文件和库:首先,我们需要引入iostream头文件来进…

    2025年3月6日
    200
  • Pygame安装教程:让你迅速上手游戏编程

    Pygame安装教程:让你迅速上手游戏编程 引言:Pygame是一款基于Python编程语言的游戏开发库,它提供了一系列丰富的功能和工具,能够帮助开发者快速实现2D游戏的创建和设计。本文将介绍如何安装Pygame,并给出具体的代码示例,帮助…

    2025年3月5日
    200
  • Go 语言游戏编程的全面实践

    go 语言凭借其高性能和并行处理能力,适用于游戏编程。入门需要安装 go sdk 和 ide。第一个游戏可以是简单的文字冒险,通过输入命令与游戏互动。对于图形密集型游戏,需要使用 sdl2 库,它可以帮助创建复杂的像素艺术游戏。 Go 语言…

    2025年3月1日
    200
  • 曝索尼在开发新头显设备:游戏中使用AR技术

    据报道,索尼最近提交了一项专利,暗示了一款新的playstation头显产品,该产品可能会在游戏中使用ar技术,与苹果的vision pro竞争。 该产品的专利显示了将AR技术应用于游戏,它可以检测用户当前的环境并允许他们在远程玩AR游戏。…

    2025年2月18日
    200

发表回复

登录后才能评论