標題:
亂數 - 種子亂數
[打印本頁]
作者:
tonyh
時間:
2021-1-9 19:12
標題:
亂數 - 種子亂數
先設定亂數種子,再利用 rand() 函式產生20組種子亂數。
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(5);
for(int i=1; i<=20; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王宇崴
時間:
2021-1-9 19:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(5);
for(int i=1;i<=20;i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子倢
時間:
2021-1-9 19:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(5);
for(int a=1; a<=20; a++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林鼎傑
時間:
2021-1-9 19:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(10000);
for(int i=1; i<=20; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余柏緯
時間:
2021-1-9 19:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(10);
for(int i=1; i<=20; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李柏穎
時間:
2021-1-9 19:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(10);
for(int i=1; i<=20; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王秉鈞
時間:
2021-1-9 19:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(8);
for(int i=1;i<=20;i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱奕祐
時間:
2021-1-9 19:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(5);
for(int i=1; i<=20; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許洧熏
時間:
2021-1-9 19:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(5);
for(int i=1; i<=35; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2