- //加入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;
- }
複製代碼 |