Board logo

標題: 亂數 - 隨機亂數 [打印本頁]

作者: tonyh    時間: 2013-8-3 15:30     標題: 亂數 - 隨機亂數

  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:33

本帖最後由 鎧言 於 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]
作者: 黃崇維    時間: 2013-8-3 15:33

  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. }
複製代碼

作者: 林以諾    時間: 2013-8-3 15:34

  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.     }
複製代碼

作者: 許逸群    時間: 2013-8-3 15:34

  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. }
複製代碼

作者: 郭凡瑛    時間: 2013-8-3 15:34

  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.     }
複製代碼

作者: 劉泳鱔    時間: 2013-8-3 15:35

  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. }
複製代碼

作者: 張瀚仁    時間: 2013-8-3 15:35

  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. }
複製代碼

作者: 蘇昱安    時間: 2013-8-3 15:36

  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.     }
複製代碼

作者: 鎧言    時間: 2013-8-3 15:58

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2