如果在Java...where中有以下内容,我想让用户为随机数生成器指定种子,因此对于给定的种子,随机数的顺序总是same...eventually将输入种子,每次生成相同的字母模式。= (char)(rand.nextInt(26) + 'A');What would be the equvalent to do the same for random in C++
srand(seed);
char('A' + rand() % 26)
今天,我的朋友有一个想法,那就是用产生的伪随机数多次设置伪随机数生成器的种子,以“使事情变得更随机”。C#中的一个例子:Random rand = new Random(milliseconds_since_unix_epochassert(rand.Next() is really_random);这个会吗?