当前位置:   article > 正文

C++产生随机数_c++ 生成符合瑞利分布的随机数

c++ 生成符合瑞利分布的随机数
  • rand()   //产生随机数
  • srand()  //获得随机数种子

一般用法:

  1. #include <time.h>
  2. #include <stdlib.h>
  3. #include <iostream>
  4. using namespace std;
  5. int main(int argc, const char * argv[])
  6. {
  7. srand((unsigned int) time(NULL));
  8. for (int i = 0; i < 10; ++i) {
  9. cout<<rand() % 100 <<endl;
  10. }
  11. return 0;
  12. }

 

 

 

 

 

 

 

参考:

https://www.cnblogs.com/VVingerfly/p/5990714.html

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/83837
推荐阅读
相关标签
  

闽ICP备14008679号