如果我在 Java 中有以下内容...我想让用户指定随机数生成器的种子,因此对于给定的种子,随机数的顺序始终相同...最终会输入要生成的种子每次都是相同的字母图案..
Random rand = new Random(Long.parseLong(t[0]));
char r = (char)(rand.nextInt(26) + 'A');
What would be the equvalent to do the same for random in C++
cin >> seed;
srand(seed);
char('A' + rand() % 26)
Run Code Online (Sandbox Code Playgroud)
srand(seed) 在 C++ 中工作吗...我已经看到响应是或否...