抢火柴游戏

一个游戏,规则如下:

一共30根火柴,由甲乙两依次取火柴,每次至少取一根,最多取两根,谁抢到最后一根就胜出。

设计一个机器和人玩的游戏。

策略:要抢到30,必须先抢到27,要抢到27,必须先抢到24,要抢到24 ,必须先抢到21,因此谁能拿到3的倍数谁赢。

就本题而言,谁先拿谁不利

设计:

让人选择谁先拿?

机器选择的策略是

如果剩余火柴数%3==0,随机拿1或2根

否则拿剩余火柴数%3根。

v 1、让人选择谁先拿?

从键盘输入谁先拿,如0代表计算机先拿,1代表人先拿,如果输入的是非法数字,做相应提示,并循环重输。

2、拿的过程是一个循环,在循环过程中,如果剩余根数为0,终止循环,并给出相应提示。

循环内部

v 2、如果人先拿

1)每次人拿时,人为输入1或2,同时要保证拿的数量要小于或等于剩余的数量,如果输入数字不合法,做相应提示,并循环重输。

2)每次拿时,提示用户还剩余多少根,人每拿一次(从键盘输入),火柴根数减少。

3)如果火柴减少到0根,那么人赢了,提示。break结束游戏。

4)轮到计算机拿,采用随机的方式,

v 所拿根数=rand( )%2 + 1

5)计算机每拿一次,火柴根数减少。

6)如果火柴减少到0根,那么计算机赢了,提示, break结束游戏。

循环内部

v 2、如果计算机先拿

1)计算机拿,采用随机的方式,所拿根数=rand( )%2 + 1

2)每次拿时,提示还剩余多少根,

3)计算机每拿一次,火柴根数减少。

4)如果火柴减少到0根,那么计算机赢了,提示, break结束游戏。

5)轮到人拿,每次人拿时,提示剩余根数多少,再人为输入1或同时要保证拿的数量要小于或等于剩余的数量,如果输入数字不合法,做相应提示,并循环重输。

6)人每拿一次(从键盘输入),火柴根数减少。

如果火柴减少到0根,那么人赢了,提示。break结束游戏。

cpp 复制代码
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main()
{
	int n=30;
	int youtake, computertake;
	int input;
	srand((unsigned)time(NULL));
	cout << "输入1则人先拿火柴,输入0则计算机先拿火柴,请输入你的选择:";
	do {

		cin >> input;		
		if (input != 1 && input != 0)
		{
			cout << "请输入1或0!" << endl;
			cout << "输入1则人先拿火柴,输入0则计算机先拿火柴,请输入你的选择:";
		}
	} while (input != 1 && input != 0);
	//选择人先拿火柴
	if (input == 1)
	{
		while (1)
		{
			cout << "剩余火柴数量:" << n << endl;
			cout << "本轮你要拿走多少根火柴?请输入:";
			do {
				cin >> youtake;
				if (youtake != 1 && youtake != 2)
				{
					cout << "注意:每次至少取一根,最多取两根!";
					cout << "本轮你要拿走多少根火柴?请输入:";
				}
			} while (youtake != 1 && youtake != 2);
			n = n - youtake;
			if (n == 0)
			{
				cout << endl;
				cout << "恭喜你,赢得本次抢火柴游戏!"; break;
			}
			else if (n % 3 == 0)
			{
				computertake = rand() % 2 + 1;
				cout << "本轮计算机拿走的火柴数量:" << computertake<<endl;
				cout << endl;
			}
			else
			{
				computertake = n % 3;
				cout << "本轮计算机拿走的火柴数量:" << computertake << endl;
				cout << endl;
			}
			n = n - computertake;
			if (n == 0)
			{
				cout << "很遗憾,你输了,本次抢火柴游戏计算机取得胜利!"; break;
			}
		}
	}
	//选择计算机先拿火柴
	else
	{
		while (1)
		{
			if (n % 3 == 0)
			{
				computertake = rand() % 2 + 1;
				cout << "本轮计算机拿走的火柴数量:" << computertake << endl;
				cout << endl;
			}
			else
			{
				computertake = n % 3;
				cout << "本轮计算机拿走的火柴数量:" << computertake << endl;
				cout << endl;
			}
			n = n - computertake;
			if (n == 0)
			{
				cout << "很遗憾,你输了,本次抢火柴游戏计算机取得胜利!"; break;
			}
			cout << "剩余火柴数量:" << n << endl;
			cout << "本轮你要拿走多少根火柴?请输入:";
			do {
				cin >> youtake;
				if (youtake != 1 && youtake != 2)
				{
					cout << "注意:每次至少取一根,最多取两根!";
					cout << "本轮你要拿走多少根火柴?请输入:";
				}
			} while (youtake != 1 && youtake != 2);
			n = n - youtake;
			if (n == 0)
			{
				cout << endl;
				cout << "恭喜你,赢得本次抢火柴游戏!"; break;
			}
		}
	}
	return 0;
}
相关推荐
过过过呀Glik1 小时前
在 Ubuntu 上安装 Muduo 网络库的详细指南
linux·c++·ubuntu·boost·muduo
刚学HTML1 小时前
leetcode 05 回文字符串
算法·leetcode
蜀黍@猿2 小时前
【C++ 基础】从C到C++有哪些变化
c++
Am心若依旧4092 小时前
[c++11(二)]Lambda表达式和Function包装器及bind函数
开发语言·c++
zh路西法2 小时前
【C++决策和状态管理】从状态模式,有限状态机,行为树到决策树(一):从电梯出发的状态模式State Pattern
c++·决策树·状态模式
AC使者2 小时前
#B1630. 数字走向4
算法
冠位观测者2 小时前
【Leetcode 每日一题】2545. 根据第 K 场考试的分数排序
数据结构·算法·leetcode
轩辰~2 小时前
网络协议入门
linux·服务器·开发语言·网络·arm开发·c++·网络协议
lxyzcm2 小时前
C++23新特性解析:[[assume]]属性
java·c++·spring boot·c++23
蜀黍@猿3 小时前
C/C++基础错题归纳
c++