recherche

Maison  >  Questions et réponses  >  le corps du texte

c++ - 循环中无法生成不同的随机数

for(i=0;i<h;i++)
{    
srand(time(0));
    b[i]=rand()%3;
        }
    在这个循环中b[i]不变 怎样才能让它变化?
怪我咯怪我咯2772 Il y a quelques jours401

répondre à tous(2)je répondrai

  • 天蓬老师

    天蓬老师2017-04-17 15:19:23

    循环中b[i]一定不变,因为每次循环你都会初始化PRNG。
    srand(time(0));应该放在循环外。

    répondre
    0
  • 阿神

    阿神2017-04-17 15:19:23

    srand(time(0));
    for(i=0;i<h;i++)
    {    
        b[i]=rand()%3;
    }

    répondre
    0
  • Annulerrépondre