これが非常に単純な質問であることを願っていますが、配列内の文字列をランダムにするにはどうすればよいですか
たとえば、vaules ill の場合、これを行います
`
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
srand ( time(NULL) ); //initialize the random seed
const char arrayNum[4] = {'1', '3', '7', '9'};
int RandIndex = rand() % 4;
int RandIndex_2 = rand() % 4;
int RandIndex_3 = rand() % 4;
int RandIndex_4 = rand() % 4; //generates a random number between 0 and 3
cout << arrayNum[RandIndex] << endl;;
system("PAUSE");
return 0;
} `
arraynum内に文字列がある場合、これをどのように適用できますか
私は答えを求めて私の検索でこのようなものに出くわしました
std::string textArray[4] = {"Cake", "Toast", "Butter", "Jelly"};
しかし、私が遭遇したのは、それ自体では変化しない16進の答えだけです。したがって、おそらくランダム化されていないと思います。