標題:
048 種子亂數設定
[打印本頁]
作者:
游東祥
時間:
2014-5-3 13:59
標題:
048 種子亂數設定
設定種子亂數,並輸出10個亂數。
作者:
林宇翔
時間:
2014-5-3 14:01
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int i = 0;
cout << "輸入一個種子亂數: " ;
cin >> i;
srand(i);
int a = 0;
for(int i = 1;i <= 10 ;i++)
{
int a = rand();
cout << "第" << i << "個亂數為 : " << a << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-5-3 14:01
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a = 0;
for (int b = 1; b <= 10; b++)
{
a = rand();
cout << "第" << b <<"個亂數:" << a << endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2