返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int eat;
  7.     string food[4]={"牛排","珍奶","臭豆腐","炒飯"};
  8.     cout<<"☆★☆抽籤程式☆★☆"<<endl;
  9.     cout<<"今天晚餐\吃什麼?"<<endl;
  10.      system("pause");
  11.     srand(time(NULL));
  12.     eat=rand()%4;
  13.     for(int i=1; i<=30; i++)
  14.     {
  15.       if(i%2==1)
  16.       cout<<"☆★☆抽籤中☆★☆"<<endl;
  17.      else
  18.      cout<<"★☆★抽籤中★☆★"<<endl;
  19.      cout<<food[rand()%4]<<endl;   
  20.      _sleep(50);
  21.      system("cls");
  22.       
  23.     }
  24.    
  25.     cout<<"吃"<<food[eat]<<endl;
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

返回列表