[隨堂測驗] 產生介於指定範圍內的隨機亂數 (三)
本帖最後由 李泳霖 於 2024-1-24 10:25 編輯
試產生50組範圍介於19~27之間的隨機亂數。- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- for(int i=1; i<=50; i++)
- cout<<rand()%9+19<<endl;
- system("pause");
- return 0;
- }
複製代碼 |