標題:
亂數 - 種子亂數
[打印本頁]
作者:
tonyh
時間:
2013-8-3 15:09
標題:
亂數 - 種子亂數
//加入srand(參數)函式設定亂數種子
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(5); //設定亂數種子
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl; //依據亂數種子的值產生固定亂數
}
system("pause");
return 0;
}
複製代碼
作者:
張瀚仁
時間:
2013-8-3 15:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
scrand(5);
for(int i=1; i<=10;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林以諾
時間:
2013-8-3 15:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(100);
for(int i=1; i<=100 ;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2013-8-3 15:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(24);
for(int i=1; i<=100; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-8-3 15:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(5);
for(int i=1; i<=100; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2013-8-3 15:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(15);
for(int i=1; i<=100; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鎧言
時間:
2013-8-3 15:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(24);
for(int i=1; i<=100; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-8-3 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(100);
for(int i=1; i<=100 ;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭凡瑛
時間:
2013-8-3 15:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(5);
for(int i=1; i<=100; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃柏維
時間:
2013-8-10 15:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(5);
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鎧言
時間:
2013-10-5 16:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int a=0;
while(a!=20)
{
cout<<rand(a%4+1)<<endl;
a++;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2