迅速钢笔

文章
6
资源
0
加入时间
2年10月17天

C++ 产生随机数 srand和time

srand((unsigned )time(0));srand( ( unsigned )time( NULL ) ); //是用当前的时间值来作为随机数种子。任何的随机数发生器都需要一个”种子“。time函数返回当前日历时间的秒数。他的返回值类型为 time_t 。(unsigned )time( 0 )前的(unsigned )是把返回值强制转换为(unsigned )型。这个函数原型是tim...