返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string food[]={"咖哩","義大利麵","壽司","漢堡","屎"};
  7.     int eat;
  8.     srand(time(NULL));
  9.     cout<<"★☆★抽籤程式★☆★"<<endl;
  10.     cout<<"今天晚餐\要吃什麼?"<<endl<<endl;
  11.     system("pause");
  12.     for(int i=0; i<=100; i++)
  13.     {
  14.         eat=rand()%5+0;
  15.         if(i%2==0)
  16.         {
  17.             cout<<"★☆★抽籤程式★☆★"<<endl;
  18.         }else
  19.         {
  20.              cout<<"☆★☆抽籤程式☆★☆"<<endl;
  21.         }
  22.         cout<<food[eat]<<endl;
  23.         system("cls");
  24.     }
  25.     cout<<"今天晚餐\吃"<<food[eat]<<endl;
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

返回列表