如何产生随机数?

#include
#include
#include
int main() {
int a;
srand((unsigned)time(NULL));
a = rand();
printf("%d/n", a);
return 0;
}
要想取一定范围的随机数,用%。
以下就是取0-99随机数。
a = rand() % 100;

如何产生随机数?最先出现在Python成神之路

版权声明:
作者:zhangchen
链接:https://www.techfm.club/p/16171.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>