標題:
亂數 - 種子亂數
[打印本頁]
作者:
王瑞喻
時間:
2021-1-7 21:30
標題:
亂數 - 種子亂數
先設定亂數種子,再利用 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:25
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
srand(1);
for (int i=1; i<=20; i++)
cout<<rand()<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
柏霖
時間:
2021-1-9 19:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(18);
for(int i=1;i<=20;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
顏宇鋒
時間:
2021-1-9 19:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(9);
for(int i=1; i<=20; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾元瑜
時間:
2021-1-9 19:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(9);
for(int i=1; i<=20; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林土水
時間:
2021-1-9 19:31
本帖最後由 林土水 於 2021-1-9 19:43 編輯
#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:31
#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:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(0);
for(int=1;i<=20;i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃韋誌
時間:
2021-1-9 19:31
#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:31
#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:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(4);
for(int i=1; i<=20; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳湘儀
時間:
2021-1-9 19:33
#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:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(1);
for(int i=1; i<=20; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱嚴寘
時間:
2021-4-28 20:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(100);//亂數種子可以是0或正整數或負整數
for(int i=1; i<=20; i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪勻蓁
時間:
2021-5-4 20:51
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2