标签: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; }
每隔一秒变换一次数值。
标签:printf color 生成 ++ time main name \n bit
原文地址:https://www.cnblogs.com/0123wtdd/p/10651443.html