Board logo

標題: [作業] 搭配while迴圈產生20組1~4之隨機亂數 [打印本頁]

作者: tonyh    時間: 2013-10-5 15:29     標題: [作業] 搭配while迴圈產生20組1~4之隨機亂數

本帖最後由 tonyh 於 2013-10-12 13:59 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     _______________
  7.     _______________
  8.     while(a!=20)
  9.     {   
  10.         cout<<____________<<endl;
  11.         a++;
  12.     }
  13.     system("pause");   
  14.     return 0;
  15. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int i=0;
  8.     while(i!=20)
  9.     {
  10.         cout<<rand()%4+1<<endl;
  11.         i++;
  12.     }
  13.     system("pause");   
  14.     return 0;
  15. }
複製代碼

作者: 張瀚仁    時間: 2013-10-5 15:42

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

作者: 黃崇維    時間: 2013-10-5 16:00

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

作者: 鎧言    時間: 2013-10-5 16:02

本帖最後由 鎧言 於 2013-10-5 16:10 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL))
  7.     int a=0;
  8.     while(a!=20)
  9.     {   
  10.         cout<<rand%4+1<<endl;
  11.         a++;
  12.     }
  13.     system("pause");   
  14.     return 0;
  15. }
複製代碼

作者: 林以諾    時間: 2013-10-6 15:21

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

作者: 劉泳鱔    時間: 2013-10-6 21:32

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

作者: 許逸群    時間: 2013-10-12 11:28

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

作者: 黃柏維    時間: 2013-10-12 14:04

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

作者: 劉得旗    時間: 2013-10-12 14:05

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





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