#include <time.h> // or <ctime> in C++ srand(time(NULL)); //用时间做种子 printf("生成一个随机数: %d \n",rand()); //