正确使AI循环正确

Making AI Loop Properly?

本文关键字:循环 AI      更新时间:2023-10-16

我正在为猜测游戏制作AI,并且我遇到了一个我似乎无法自己解决的问题。目的是让用户输入一个数字,以便在合理的时间内猜测AI,我正在生成1-100之间的随机数,并通过循环运行它以调整较低或更高。

void AI::AIguess(int usernum)
{
        srand(time(NULL));
        AIchoice = rand() % High + Low;
    // "too high" or "too low" accordingly
    do {
        if (AIchoice == usernum)
        {
            cout << AIchoice << " is this correct?" << endl;
        }
        else if (AIchoice <= usernum)
        {
            cout << AIchoice << " seems a little low.." << endl;
            Low = AIchoice;
            AIchoice = 0;
            AIchoice = rand() % High + Low;
            AIguesses++;
        }
        else if (AIchoice >= usernum)
        {
            cout << AIchoice << " might have overshot a bit :/" << endl;
            High = AIchoice;
            AIchoice = 0;
            AIchoice = rand() % High + Low;
            AIguesses++;
        }
    } while (AIchoice != usernum);
}

我正在使用先前生成的数字作为下一个生成数字的参数,希望能找到用户号码。它在if语句之间弹跳并分别调整了高和低和低的,但是我面临的问题是在循环Aichoice几次之后开始添加超过100。任何人都可以帮助我?

p.s:任何有用的AI创建信息都非常感谢:)

在间隔代码中您的随机数是错误的。要生成minmax之间的数字,请执行(rand() % (max - min)) + min

所以更改 AIchoice = rand() % High + Low;AIChoice = (rand() % (High - Low)) + Low;