Board logo

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

作者: tonyh    時間: 2015-4-18 11:15     標題: 亂數 - 隨機亂數

本帖最後由 tonyh 於 2015-4-18 11:25 編輯

搭配時間函式, 產生20組隨機亂數.
time(NULL)可回傳, 從格林威治時間 1970年1月1號 0點0分0秒開始到現在的秒數.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));    //設定亂數種子
  7.     for(int i=1; i<=20; i++)
  8.         cout<<rand()<<endl;    //使用rand()函式產生固定亂數
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

作者: 李知易    時間: 2015-4-18 11:24

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     for(int i=1; i<=20; i++)
  8.     {
  9.         cout<<rand()<<endl;
  10.     }
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

作者: 洪振庭    時間: 2015-4-18 11:24

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));   
  7.     for(int i=1;i<=20;i++)
  8.       cout<<rand()<<endl;
  9.    system("pause");
  10.    return 0;
  11. }
複製代碼

作者: 梁和雋    時間: 2015-4-18 11:24

  1. #include <iostream>
  2. #include <cstdlib>;
  3. using namespace std;
  4. int main()
  5. {
  6.        srand(time(NULL));
  7.        for(int a=1 ;a<=20; a++)
  8.        cout<<rand()<<endl;
  9.         system ("pause") ;
  10.         return 0;
  11. }
複製代碼

作者: 李大全    時間: 2015-4-18 11:28

本帖最後由 李大全 於 2015-4-18 11:46 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     for(int a=1;a<=20;a++)
  8.     {
  9.     cout<<rand()<<endl;  
  10.     }
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 謝瀞儀    時間: 2015-4-21 20:30

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     for(int i=1;i<=20;i++)
  8.     cout<<rand()<<","<<"\a"<<"\n";
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼





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