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

rand函数

时间:2019-04-03 22:07:57      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:printf   color   生成   ++   time   main   name   \n   bit   

srand()用来初始化随机数种子,rand()用来产生随机数

srand(time(0));
while(t--){
printf("-> %d %d\n",rand(),rand());
}

每次都要,要不然初始值的rand都是一,生成的数值一样

	while(t--){
		srand(1);
		printf("-> %d %d\n",rand(),rand());
	}
	
这样的话每次的数值都一样,因为每次的seed只都一样
#include <bits/stdc++.h> 
#include <ctime> 
#include<windows.h>
#include<time.h>
using namespace std;
int main(){  
    int t=10;
    //seed
    
	while(t--){
		printf("%d\n",time(0));
		Sleep(500);
	}
	
    return 0;  
}  
每隔一秒变换一次数值。

  

rand函数

标签:printf   color   生成   ++   time   main   name   \n   bit   

原文地址:https://www.cnblogs.com/0123wtdd/p/10651443.html

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