码迷,mamicode.com
首页 > 编程语言 > 详细

C++随机数

时间:2017-07-15 10:17:27      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:ctime   code   随机   false   随机数   产生   std   cti   log   

C++随机数

一、

产生1-52的随机数

 1     srand(unsigned(time(0)));
 2     for(int i=1;i<=10000;i++){
 3         int x=int(rand()%52)+1;
 4         if(x<=0||x>52) cout<<x<<" "<<false<<endl; 
 5     }
 6 
 7 
 8 
 9 
10 
11 #include <cstdlib> 
12 #include <ctime>
13 #include <cstdio>

 

C++随机数

标签:ctime   code   随机   false   随机数   产生   std   cti   log   

原文地址:http://www.cnblogs.com/Renyi-Fan/p/7173925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!