Board logo

標題: 047 取得固定亂數 [打印本頁]

作者: 游東祥    時間: 2014-5-3 13:13     標題: 047 取得固定亂數

在畫面上輸出10個由系統產生的亂數
作者: 林宇翔    時間: 2014-5-3 13:40

  1. #include <iostream>
  2. #include <cstdlib>

  3. using namespace std;
  4. int main()
  5. {   
  6.       int a = 0;
  7.       for(int i = 1;i <= 10 ;i++)
  8.       {
  9.               int a = rand();       
  10.                   cout << "第" << i << "個亂數為 : " << a << endl;
  11.       }
  12.           system("pause");
  13.       return 0;
  14. }
複製代碼

作者: 李允軒    時間: 2014-5-3 13:43

  1. #include <iostream>
  2. #include <cstdlib>

  3. using namespace std;

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





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