c语言怎么调用随机数生成函数
发布网友
发布时间:2022-05-05 18:06
我来回答
共1个回答
热心网友
时间:2022-06-27 21:40
如何运用time函数和srand函数生成随机数
#include
<stdio.h>
#include
<stdlib.h>//srand()、rand()
#include
<time.h>//time();
#define
N
50
int
main()
{
int
n;
srand((unsigned)time(NULL));//设置随机数种子
while
(1)
{
n
=
(rand()
%
10)
+
1
;//产生1~10的随机数
//rand()产生的是一个很大的数,对其求余就可以达到限定范围的目的
printf("%d
",
n);
}
return
0;
}