返回列表 發帖

[作業] 搭配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. }
複製代碼

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

本帖最後由 鎧言 於 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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

返回列表