本帖最後由 李泳霖 於 2024-3-30 11:15 編輯
試產生20組4個範圍介於0~9, 不重複之隨機亂數.
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int a[4];
- cout<<"4個介於0~9的隨機亂數:"<<endl;
- for(int i=1;i<=20;i++)
- {
- for(int i=0;i<4;i++)
- {
- a[i]=rand()%10;
- cout<<a[i]<<" ";
- }
- _sleep(500);
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |