标签:随机数 随机种子
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main ()
{
int iSecret, iGuess;
/* 初始化随机种子 */
srand ( time(NULL) );
/* generate secret number: */
iSecret = rand() % 10 + 1;
}
上边的随机数种子只能用时间初始化吗?有没有其他的初始化方法 或者说 不用初始化
顶
标签:随机数 随机种子
原文地址:http://18392655994.blog.51cto.com/10154962/1747679