返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     cout<<"★☆★抽籤程式★☆★"<<endl<<endl;
  8.     cout<<"今天吃啥?"<<endl<<endl;
  9.     string food[5]={"吃牛排","吃陽春麵","吃雞排","吃芝麻球","...等等,你那麼胖,還吃得下?!"};
  10.     system("pause");
  11.     for(int i=1; i<=30; i++)
  12.     {
  13.         if(i%2==1)
  14.         {
  15.             cout<<"★☆★抽籤程式★☆★"<<endl;        
  16.         }else
  17.         cout<<"☆★☆抽籤程式☆★☆"<<endl;
  18.         cout<<food[rand()%5]<<endl;
  19.         _sleep(50);
  20.         system("cls");        
  21.     }
  22.         cout<<"今天"<<food[rand()%5]<<endl;
  23.    
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

TOP

返回列表