標題:
050 產生指定範圍內的隨機亂數
[打印本頁]
作者:
游東祥
時間:
2014-5-3 14:44
標題:
050 產生指定範圍內的隨機亂數
讓使用者輸入最小與最大值,接著由程式產生10個指定範圍內的整數。
作者:
林宇翔
時間:
2014-5-3 15:18
本帖最後由 林宇翔 於 2014-5-3 15:23 編輯
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
int a = 0;
int b;
int c;
cout << "輸入一個種子亂數的最小值: " ;
cin >> b;
cout << "輸入一個種子亂數的最大值: " ;
cin >> c;
cout << "公式為 (rand() % (" << c << " - " << b << " + 1) + " << b <<endl;
for(int i = 1;i <= 10 ;i++)
{
a = (rand() % ( c - b + 1)) + b;
cout << "第" << i << "個亂數為 : " << a << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-5-3 15:27
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
int z,m;
cout << "輸入一個種子亂數的最小值:";
cin >> z;
cout << "輸入一個種子亂數的最大值:";
cin >> m;
cout << "公式為:(rand() % (" << m << "-" << z << ") + 1)"<< endl;
for (int b = 1; b <= 10; b++)
{
int a = (rand()% (m - b + 1) + m);
cout << "第" << b <<"個亂數:" << a << endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2