返回列表 發帖
本帖最後由 戴唯陞 於 2018-11-24 17:02 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.      string food [5]={"炸雞","薯條","蛋糕","喝水","喝西北風"};  
  8.      
  9.      int ball;
  10.      srand(time(NULL));
  11.      cout<<"來抽抽看 今天晚餐吃甚麼?"<<endl;
  12.      system("pause");
  13.      system("cls");
  14.      
  15.      for(int i=0; i<=10; i++)
  16.     {
  17.      ball=rand()%5;  
  18.      if(i%2==0)
  19.        cout<<"抽籤中 請稍後"<<endl;
  20.      else
  21.       
  22.       
  23.      cout<<"抽籤中 請稍後"<<endl;
  24.      cout<<food[ball]<<endl;
  25.        system("cls");
  26.     }
  27.     cout<<"吃 "<<food[ball]<<endl<<endl;     

  28.     system("pause");
  29.     return 0;   
  30. }
複製代碼

TOP

返回列表