標題:
產生介於指定範圍內的隨機亂數 (五)
[打印本頁]
作者:
鄭繼威
時間:
2022-12-14 00:26
標題:
產生介於指定範圍內的隨機亂數 (五)
本帖最後由 鄭繼威 於 2023-2-25 14:10 編輯
產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。
_sleep(N)可讓程式暫停執行N毫秒
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int n[4]; //宣告長度為4的陣列
//執行20次->//20組
for(int i=1;i<=20;i++)
{
//執行4次->//產生4個亂數
for(int j=0;j<=3;j++)
{
// n[j]=0~9的亂數
n[j]=rand()%10;
cout<<n[j]<<" ";
}
cout<<endl;
_sleep(500); //暫停0.5秒
}
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2022-12-14 20:12
此帖僅作者可見
作者:
黃裕恩
時間:
2022-12-14 20:19
此帖僅作者可見
作者:
李彣
時間:
2022-12-14 20:21
此帖僅作者可見
作者:
林劭杰
時間:
2022-12-14 20:22
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2