① 如何用C語言 寫一個隨機數生成器的程序
#include
<stdio.h>
#include
<time.h>
void
main()
{
int
iNum
=
0;
srand((unsigned)time(0));
iNum
=
rand()
%
100
+
1;
//隨機生成一個數,並對100取余,使它小於100(0~99)。再加1(1~100)
printf("%d\n",
iNum);
\\列印專出來這個數
return;
}
如果想多生成幾屬個隨機數,可以有一個數組存儲,並用for循環實現隨機生成
int
aiNum[10]
=
{0};
int
iLoop
=
0;
//隨機生成10個數
for
(
iLoop
=
0;
iLoop
<
10;
iLoop++
)
{
aiNum[iLoop]
=
rand()
%
100
+
1;
}
② C語言中如何隨機選取數組中的數字(程序代碼請寫出)
1、使用rand()函數獲取一個隨機數
rand()會返回一隨機數值, 范圍在0至RAND_MAX 間。RAND_MAX定義回在stdlib.h, 其值為2147483647。
2、代碼答如下
#include<iostream>
usingnamespacestd;
intmain()
{
for(inti=0;i<10;i++)
{
cout<<rand()<<endl;
}
}
③ C語言的隨機抽樣怎麼編程
用rand函數
④ 如何用VB編寫一個簡單的選號器就是點擊然後程序隨機幫選出一個數(1~70個數)
dim s as int
Call Randomize
s=Round(70* Rnd),0)