标签:ble span under 区间 amp dom 生成 number seed
K&R 7.8.7 Random Number Generation
1. 函数 rnad() 计算出在0~RAND_MAX之间的随机数
int rand(void);
产生[0,1) 区间的随机数 #define frand ((double) rand() / (RAND_MAX+1.0)
2. 函数srand()
void srand(unsigned int seed);
设置种子
标签:ble span under 区间 amp dom 生成 number seed
原文地址:http://www.cnblogs.com/longwaytogo/p/6135391.html