[作業] 搭配while迴圈產生20組1~4之隨機亂數
本帖最後由 tonyh 於 2013-10-12 13:59 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- _______________
- _______________
- while(a!=20)
- {
- cout<<____________<<endl;
- a++;
- }
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int i=0;
- while(i!=20)
- {
- cout<<rand()%4+1<<endl;
- i++;
- }
- system("pause");
- return 0;
- }
複製代碼 |