srand((unsigned)time(NULL)); int img_index = rand() % 2 + 1;
表示1到2的整数随机数
srand((unsigned)time(NULL)); int img_index = rand() % 10 + 1;
表示1到10的整数随机数
srand((unsigned)time(NULL)); int img_index = rand() % 2 + 1;
表示1到2的整数随机数
srand((unsigned)time(NULL)); int img_index = rand() % 10 + 1;
表示1到10的整数随机数