1、包含头文件
#include<time.h>
#include <stdlib.h>
2、设置随机数种子
一般设置系统时间为随机种子,因为系统时间是在不断变化的,在调用rand()便可以得到不同的随机数!
srand((unsigned)time(NULL)) ;
3、产生随机数
int MAXSIZE = 100;
int number = rand()%MAXSIZE+1;
产生1-100之间的随机数。
rand()函数和srand()函数
最新推荐文章于 2024-07-31 23:53:10 发布