gpt4 book ai didi

c++ - 如何使用 Rand() 随机选择一个变量

转载 作者:行者123 更新时间:2023-11-28 03:01:41 25 4
gpt4 key购买 nike

我正在尝试用 C++ 制作一个基于文本的战斗机,这是我做的第一件事。到目前为止我有这个:

//Text Based Fighter

#include <iostream>
#include <stdlib.h> //srand, rand
#include <string>

using namespace std;

int main() {

//Player
int playerHealth = 100;
int attack1;
int attack2;
int attack3;
string attack;
int npc1;
int npc2;

cout << "Do you want to attack " << rand()[npc1,npc2];

//varname = rand() % 10 + 1;

return 0;
}

我想让它做的是在 npc1 和 npc2 之间随机选择,谢谢。

如果您对我的代码编写方式有任何评论,我们将不胜感激,我几天前才开始,谢谢,如果您需要更多详细信息,请随时询问,谢谢。

最佳答案

您可以只使用任意数量的变量数组来选择:

int attack[n];  //For some int-constant n

attack[rand() % n]; //choose a random attack-variable, use it

关于c++ - 如何使用 Rand() 随机选择一个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20646475/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com