如何运用time函数和srand函数生成随机数,来个代码,

来源:学生作业帮助网 编辑:作业帮 时间:2024/11/06 05:47:25
如何运用time函数和srand函数生成随机数,来个代码,
xJA_e0]f+m@u@e]" 탼0\B!((3VS-gU*0wOӉ7k6k>[o UdzyyLo{ś>j,o P%6&BYGHW>#%9DGYLHE0@1r=%I eN%0p\6s7%}EAԟXvn @Ud T1ޤPUu4a=ukp#.{G1uim8oS}լp+؆J"1+L~%ޑ&&*KFh=7

如何运用time函数和srand函数生成随机数,来个代码,
如何运用time函数和srand函数生成随机数,来个代码,

如何运用time函数和srand函数生成随机数,来个代码,
#include
#include //srand()、rand()
#include //time();
#include
#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;
}