返回列表 發帖
  1. #include<iostream>
  2. #include<iostream>
  3. #include<cstdlib>
  4. #include<ctime>
  5. using namespace std;
  6. int main()
  7. {
  8.     srand(time(NULL));
  9.     cout<<"4­Ó¤¶©ó0~9¤§ÀH¾÷¶Ã¼Æ:"<<endl;
  10.     for(int i=1; i<=200; i++)
  11.     {
  12.         cout<<rand()%10<<" "<<rand()%10<<" "<<rand()%10<<" "<<rand()%10<<endl;
  13.         _sleep(50);
  14.     }
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

TOP

返回列表