標題:
亂數 - 種子亂數
[打印本頁]
作者:
tonyh
時間:
2011-12-24 16:24
標題:
亂數 - 種子亂數
本帖最後由 tonyh 於 2011-12-24 16:26 編輯
使用srand()函數, 產生10個種子亂數, 種子數自由設定.
本帖隱藏的內容需要回復才可以瀏覽
作者:
t3742238
時間:
2011-12-24 16:24
本帖最後由 t3742238 於 2011-12-24 17:03 編輯
#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;
}
複製代碼
作者:
劉漢文
時間:
2011-12-24 16:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(1000);
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-12-24 16:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(1);
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2011-12-24 16:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(13);
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2011-12-24 16:25
#include <iostream>
using namespace std;
int main()
{
srand(6);
for(int i=1; i<=10;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-12-24 16:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(10);
for(int i=1; i<=10;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許逸瑋
時間:
2011-12-24 16:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(1);
for(int i=1;i<=10;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2011-12-24 16:48
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
cout<<"從1970年 1月1日0分0秒到現在共經過了"<<time(NULL)<<"秒"<<endl;
srand(time(NULL));
for(int i=1; i<=10;i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2