本文主要是介绍C 获取随机数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<pre id="best-content-802697644" accuse="aContent" class="best-text mb-10">利用系统流失时间做种子,产生随机数
#include<iostream>
#include<ctime>
using namespace std;int main()
{srand(time(0));int result[10];for(int i = 0; i < 10; i++){result[i] = rand() % 100;cout << result[i] << " ";}return 0;
}
</pre><pre name="code" class="cpp">//获取1-10随机数
#include<iostream>
#include<ctime>
using namespace std;int main()
{srand(time(0));int randnum = (rand() % 10 +1); printf("%d\n",randnum);return 0;
}
这篇关于C 获取随机数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!