gpt4 book ai didi

c - 在C中生成两个不同的随机数

转载 作者:行者123 更新时间:2023-11-30 18:30:11 24 4
gpt4 key购买 nike

我试图在给定范围内用 C 生成两个不同的随机数。范围是

0 to nk-1

但是我的以下代码有时有效,有时失败。这背后的原因是什么?

n1=rand()%nk;
n2=rand()%nk;
while(n1==n2)
{
srand(time(0));
n2=rand()%nk;
}

最佳答案

你应该为 RNG 做一次种子,

srand(time(0));
n1=rand()%nk;
n2=rand()%nk;
while(n1==n2)
{
n2=rand()%nk;
}

关于c - 在C中生成两个不同的随机数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32682506/

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