標題:
亂數 - 種子亂數
[打印本頁]
作者:
陳品肇
時間:
2019-3-16 12:17
標題:
亂數 - 種子亂數
先設定亂數種子, 再利用 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;
}
複製代碼
作者:
吳孟修
時間:
2019-3-16 13:48
本帖最後由 吳孟修 於 2019-3-16 13:56 編輯
#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;
}
複製代碼
作者:
曲書辰
時間:
2019-3-16 13:53
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
srand(100);
for(int i=1;i<=20;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-3-16 13:54
本帖最後由 洪寬瀧 於 2019-3-16 13:56 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(87);
for(int l=1;l<=20;l++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-3-16 13:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(333);
for(int i=1;i<=20;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2019-3-16 13:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(6);
for(int i=1;i<=20;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
章幼莛
時間:
2019-3-16 13:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(16);
for(int i=1;i<=20;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
回復
1#
陳品肇
作者:
洪寬瀧
時間:
2019-3-30 15:07
#include<iostream> //☆★◇◆□■▽▼㊣℅¯>﹤㏒
#include<cstdlib>
using namespace std;
int main()
{ //alt+41405=■,alt+41404=□;
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=1 && i<=5)
cout<<"■□□□□□□□□□"<<endl;
if(i>=1 && i<=5)
cout<<"■■□□□□□□□□"<<endl;
if(i>=1 && i<=5)
cout<<"■■■□□□□□□□"<<endl;
if(i>=1 && i<=5)
cout<<"□■■■□□□□□□"<<endl;
if(i>=1 && i<=5)
cout<<"□□■■■□□□□□"<<endl;
if(i>=1 && i<=5)
cout<<"□□□■■■□□□□"<<endl;
if(i>=1 && i<=5)
cout<<"□□□□■■■□□□"<<endl;
if(i>=1 && i<=5)
cout<<"□□□□□■■■□□"<<endl;
if(i>=1 && i<=5)
cout<<"□□□□□□■■■□"<<endl;
if(i>=1 && i<=5)
cout<<"□□□□□□□■■■"<<endl;
if(i>=1 && i<=5)
cout<<"□□□□□□□□■■"<<endl;
if(i>=1 && i<=5)
cout<<"□□□□□□□□□■"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2