22智能在线
新记
C语言如何生成1~20000000随机数
如题所述
举报该文章
相关建议 2017-12-19
#include<
stdio.h
>
#include<
stdlib.h
>
#include<time.h>
void main() { int x;
srand((unsigned int )time(NULL));
x=rand()%20000000+1;
printf("%d\n",x);
}
rand()%20000000会生成[0~19999999]区间的整数
rand()%20000000+1为[1~20000000]区间整数
温馨提示:内容为网友见解,仅供参考
当前网址:
https://22.t2y.org/zz/2xx02cc6iiss066tfi.html
其他看法
第1个回答 2017-12-19
srand();
Warning
: Invalid argument supplied for foreach() in
/www/wwwroot/www.t2y.org3v3b34/skin/templets/default/contents.html
on line
47
相似回答
大家正在搜
相关问题
c语言中如何随机生成一个 1 到 2千万 的数
c语言中如何生成1个0到1的随机数
怎样用c语言生成n个随机数
c语言怎么生成随机数?
怎样用C语言生成10个1到100的不重复的随机数?
怎样用c语言生成n个随机数?
c语言,如何产生随机数
C语言怎么产生1到5之间的随机数? 大神给头文件和函数使用方...