我只是想知道这个srand函数是如何工作的,通过passin time(NULL)作为参数
int Secret; // variable declaration
srand(time(NULL)); //calling srand function
Secret = rand() % 10 + 1; //generation random no between 0 and 10
cout<<Secret;
time()获取当前时间http://www.cplusplus.com/reference/ctime/time
srand()播种你的rand()伪随机数生成器。
这是C风格的做事方式。 C ++习惯用法是使用随机头及其功能。
请参阅http://www.cplusplus.com/reference/random/generate_canonical/上的示例
麦克风