有一种方法可以在每次运行时都srand()一个不同的数字,就是在srand()的括号里写上准确的时间。电脑能精确到百分之一秒的时间。
time_t;
srand(time(&t));
subDraw = (rand() % (numCards));