返回列表 發帖

亂數 - 隨機亂數

  1. //加入time(NULL)函式使亂數種子的值隨時間而改變
  2. #include<iostream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     long t=time(NULL);
  8.     cout<<"從1970年1月1日0時0分0秒到現在經過了: "<<t<<"秒"<<endl;
  9.     cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
  10.     srand(t);  //設定亂數種子
  11.     //srand(time(NULL));
  12.     for(int i=1; i<=10; i++)
  13.     {
  14.         cout<<rand()<<endl;  //依據亂數種子的值產生固定亂數
  15.     }
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

本帖最後由 鎧言 於 2013-8-3 15:59 編輯
  1. [code]
  2. #include<iostream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     long t=time(NULL);
  8.     cout<<"從1970年1月1日0時0分0秒到現在經過了: "<<t<<"秒"<<endl;
  9.     cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
  10.     srand(t);
  11.     //srand(t);
  12.     for(int i=1; i<=10; i++)
  13.     {
  14.         cout<<rand()<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼
[/code]

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     long t=time (NULL);
  7.     cout<<"從1970年1月1日0分0秒到現在經過了: "<<t<<"秒"<<endl;
  8.     cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
  9.     srand(t);
  10.     for(int i=1; i<=10; i++)
  11.     {
  12.          cout<<rand()<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     long t=time(NULL);
  7.     cout<<"從1970年一月一日0十0分0秒到現在經過了:"<<t<<"秒"<<endl;
  8.     cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
  9.     srand(t);//設定亂數種子
  10.     for(int i=1; i<=10 ;i++)
  11.     {
  12.             cout<<rand()<<endl;//依據亂數種子的質固定亂數
  13.             }
  14.     system("pause");
  15.     return 0;
  16.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     long t=time(NULL);
  7.     cout<<"從1970年1月1日0時0分0秒到現在經過了: "<<t<<"秒"<<endl;
  8.     cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
  9.     srand(t);
  10.     //srand(t);
  11.     for(int i=1; i<=10; i++)
  12.     {
  13.         cout<<rand()<<endl;
  14.     }
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     long t=time(NULL);
  7.     cout<<"從1970年1月1日0時0分到現在經過了:"<<t<<"秒"<<endl;
  8.     cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
  9.     srand(5);
  10.    for(int i=1; i<=100; i++)   
  11.     {
  12.      cout<<rand()<<endl;
  13.     }   
  14.     system("pause");
  15.     return 0;
  16.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     long t=time(NULL);
  7.     cout<<"從1970年1月1日0十0分0秒到現在經過了: "<<t<<"秒"<<endl;
  8.     cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
  9.     srand(t);
  10.     for(int i=1; i<=100; i++)
  11.     {
  12.          cout<<rand()<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     long t=time(NULL);
  7.     cout<<"從1970年1月1日0時0分0秒到現在經過了: "<<t<<"秒"<<endl;
  8.     cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
  9.     srand(t);  
  10.     for(int i=1; i<=10; i++)
  11.     {
  12.         cout<<rand()<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     long t=time(NULL);
  7.     cout<<"從1970年一月一日0十0分0秒到現在經過了:"<<t<<"秒"<<endl;
  8.     cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
  9.     srand(t);//設定亂數種子
  10.     for(int i=1; i<=10 ;i++)
  11.     {
  12.             cout<<rand()<<endl;//依據亂數種子的質固定亂數
  13.             }
  14.     system("pause");
  15.     return 0;
  16.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     long t=time(NULL);
  7.     cout<<"從1970年1月1日0時0分0秒到現在經過了: "<<t<<"秒"<<endl;
  8.     cout<<"(約"<<t/(365*24*60*60)<<"年)"<<endl;
  9.     srand(t);
  10.     for(int i=1; i<=10; i++)
  11.     {
  12.         cout<<rand()<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

返回列表