rand函数
Posted 0123wtdd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rand函数相关的知识,希望对你有一定的参考价值。
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函数的主要内容,如果未能解决你的问题,请参考以下文章