srand((unsigned)time(NULL));在c语言中有什么具体的意思吗?
1个回答
展开全部
如何运用time函数和srand函数生成随机数
#include <stdio.h>
#include <stdlib.h>//srand()、rand()
#include <time.h>//time();
#include <conio.h>
#define N 50
int main()
{
int n;
srand((unsigned)time(NULL));//设置随机数种子
while (1)
{
n = (rand() % 10) + 1 ;//产生1~10的随机数
//rand()产生的是一个很大的数,对其求余就可以达到限定范围的目的
printf("%d ", n);
getch();
}
return 0;
}
#include <stdio.h>
#include <stdlib.h>//srand()、rand()
#include <time.h>//time();
#include <conio.h>
#define N 50
int main()
{
int n;
srand((unsigned)time(NULL));//设置随机数种子
while (1)
{
n = (rand() % 10) + 1 ;//产生1~10的随机数
//rand()产生的是一个很大的数,对其求余就可以达到限定范围的目的
printf("%d ", n);
getch();
}
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询