码迷,mamicode.com
首页 > 其他好文 > 详细

生成随机数

时间:2017-04-16 22:50:46      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:event   函数   har   rand   pen   char   and   循环语句   unsigned   

技术分享
#include <cstdio>
#include<cstdlib> 
#include <iostream> 
#include <time.h> 
using namespace std; 
#define MAX 100000
int main(int argc,char*argv[]) 
{    
    srand((unsigned)time(NULL));//srand()函数产生一个以当前时间开始的随机种子.应该放在for等循环语句前面 不然要很长时间等待
    for (int i=0;i<10000;i++) 
    cout<<rand()%MAX<<endl;//MAX为最大值,其随机域为0~MAX-1
    return 0; 
} 
随机数

利用这个种子我们能搞很多事情;

生成随机数

标签:event   函数   har   rand   pen   char   and   循环语句   unsigned   

原文地址:http://www.cnblogs.com/qdscwyy/p/6720112.html

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