如何产生随机数?
#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
二维码
共有 0 条评论