Better random algorithm?

后端 未结 14 1788
情书的邮戳
情书的邮戳 2020-12-16 06:48

I\'m making a game in C++ and it involves filling tiles with random booleans (either yes or no) whether it is yes or no is decided by rand() % 1. It doesn\'t fe

14条回答
  •  一向
    一向 (楼主)
    2020-12-16 07:22

    People say lower-order bits are not random. So try something from the middle. This will get you the 28th bit:

    (rand() >> 13) % 2
    

提交回复
热议问题