標題:
亂數 - 隨機亂數
[打印本頁]
作者:
tonyh
時間:
2013-8-3 15:30
標題:
亂數 - 隨機亂數
//加入time(NULL)函式使亂數種子的值隨時間而改變
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從1970年1月1日0時0分0秒到現在經過了: "<<t<<"秒"<<endl;
cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
srand(t); //設定亂數種子
//srand(time(NULL));
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl; //依據亂數種子的值產生固定亂數
}
system("pause");
return 0;
}
複製代碼
作者:
鎧言
時間:
2013-8-3 15:33
本帖最後由 鎧言 於 2013-8-3 15:59 編輯
[code]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從1970年1月1日0時0分0秒到現在經過了: "<<t<<"秒"<<endl;
cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
srand(t);
//srand(t);
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
[/code]
作者:
黃崇維
時間:
2013-8-3 15:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time (NULL);
cout<<"從1970年1月1日0分0秒到現在經過了: "<<t<<"秒"<<endl;
cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
srand(t);
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林以諾
時間:
2013-8-3 15:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從1970年一月一日0十0分0秒到現在經過了:"<<t<<"秒"<<endl;
cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
srand(t);//設定亂數種子
for(int i=1; i<=10 ;i++)
{
cout<<rand()<<endl;//依據亂數種子的質固定亂數
}
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-8-3 15:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從1970年1月1日0時0分0秒到現在經過了: "<<t<<"秒"<<endl;
cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
srand(t);
//srand(t);
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭凡瑛
時間:
2013-8-3 15:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從1970年1月1日0時0分到現在經過了:"<<t<<"秒"<<endl;
cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
srand(5);
for(int i=1; i<=100; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2013-8-3 15:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從1970年1月1日0十0分0秒到現在經過了: "<<t<<"秒"<<endl;
cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
srand(t);
for(int i=1; i<=100; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張瀚仁
時間:
2013-8-3 15:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從1970年1月1日0時0分0秒到現在經過了: "<<t<<"秒"<<endl;
cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
srand(t);
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-8-3 15:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從1970年一月一日0十0分0秒到現在經過了:"<<t<<"秒"<<endl;
cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
srand(t);//設定亂數種子
for(int i=1; i<=10 ;i++)
{
cout<<rand()<<endl;//依據亂數種子的質固定亂數
}
system("pause");
return 0;
}
複製代碼
作者:
鎧言
時間:
2013-8-3 15:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
long t=time(NULL);
cout<<"從1970年1月1日0時0分0秒到現在經過了: "<<t<<"秒"<<endl;
cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
srand(t);
for(int i=1; i<=10; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2