C++随机数

#include   <time.h>
time_t   t;
srand((unsigned)   time(&t));
int   i=int(rand()%(MAX-MIN+1))+MIN;//产生了从MIN到MAX之间的随机数

你可能感兴趣的:(随机数,随机)