本帖最後由 鄭繼威 於 2023-2-25 14:09 編輯
產生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;
- }
複製代碼 |