返回列表 發帖

亂數 - 產生介於指定範圍內的隨機亂數 (三)

本帖最後由 tonyh 於 2011-12-24 17:33 編輯

產生25個介於320~640間的隨機亂數.
本帖隱藏的內容需要回復才可以瀏覽

本帖最後由 t3742238 於 2011-12-24 17:31 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"產生320~640間的的隨機亂數"<<endl;
  8.     srand(time(NULL));
  9.     for(int i=1; i<=25;i++)
  10.     {
  11.             cout<<rand()%321+320<<endl;
  12.     }
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

TOP

本帖最後由 尤泓鈞 於 2011-12-24 17:31 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"產生25個320~640間的隨機亂數:";
  8.     srand(time(NULL));
  9.     for(int i=1; i<=25;i++)
  10.   {   
  11.     cout<<rand()%321+320<<endl;
  12.   }
  13.   system("pause");
  14.   return 0;
  15. }
複製代碼

TOP

本帖最後由 劉漢文 於 2011-12-24 17:31 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"產生25個320-640間的隨機亂數: "<<endl;
  8.     srand(time(NULL));
  9.     for(int i=1; i<=25; i++)
  10.     {
  11.             cout<<rand()%321+320<<endl;
  12.     }
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

本帖最後由 蔡昀佑 於 2011-12-24 17:32 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.        cout<<"從320~640取出25個數:"<<endl;
  8.       
  9.        srand(time(NULL));
  10.        for(int i=1; i<=25; i++)
  11.        {
  12.                
  13.             cout<<rand()%321+320<<endl;                                
  14.        }
  15.        system("pause");   
  16.        return 0;   
  17.    
  18.    
  19.    
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.       cout<<"產生25個320~640間的隨機亂數: "<<endl;
  8.       srand(time(NULL));
  9.       for(int i=1; i<=25; i++)
  10.       {
  11.               cout<<rand()%321+320<<endl;
  12.       }
  13. system("pause");
  14. return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"產生320~640間的的隨機亂數"<<endl;
  8.     srand(time(NULL));
  9.     for(int i=1; i<=25;i++)
  10.     {
  11.             cout<<rand()%321+320<<endl;
  12.     }
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.   cout<<"產生25個320~640間的隨機亂數:";  
  8.   srand(time(NULL));  
  9.   for(int i=1; i<=25;i++)
  10.   {
  11.    cout<<rand()%321+320<<endl;   
  12.   }
  13.   
  14.   
  15.   
  16. system("pause");   
  17. return 0;
  18. }
複製代碼

TOP

返回列表