Board logo

標題: 049 取得隨機亂數 [打印本頁]

作者: 游東祥    時間: 2014-5-3 14:03     標題: 049 取得隨機亂數

程式執行後直接輸出10個亂數,並且每次產生的10個亂數都必須不同。
作者: 李允軒    時間: 2014-5-3 14:42

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;

  5. int main()
  6. {
  7.         srand(time(NULL));
  8.         for (int b = 1; b <= 10; b++)
  9.         {
  10.                 int a = rand();
  11.                 cout << "第" << b <<"個亂數:" << a << endl;
  12.         }
  13.         system("pause");
  14.         return 0;
  15. }
複製代碼

作者: 林宇翔    時間: 2014-5-3 14:44

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {   
  7.       int a = 0;
  8.           srand(time(NULL));
  9.       for(int i = 1;i <= 10 ;i++)
  10.       {
  11.               int a = rand();        
  12.                   cout << "第" << i << "個亂數為 : " << a << endl;
  13.       }
  14.           system("pause");
  15.       return 0;
  16. }
  17.                
複製代碼





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