|
產生介於指定範圍內的隨機亂數 (一)
本帖最後由 許婷芳 於 2020-3-21 11:25 編輯
試產生20組範圍介於0~2的隨機亂數。- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- //rand()%x 給予範圍的意思
- srand(time(NULL));
- for(int i=0;i<20;i++)
- {
- cout<<rand()%3<<endl; // 隨機產生20個0~2的亂數
- }
- system("pause");
- return 0;
- }
複製代碼 |
|