返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         string food[]={"漢堡","牛排","羊肉爐","意麵","大便","餿水"};
  8.    srand(time(NULL));
  9.    re:
  10.    system("cls");
  11.    cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  12.    cout<<"今天晚餐\吃什麼?"<<endl<<endl;
  13.    
  14.         for(int a=0;a<30;a++){
  15.                 if(a%2==1)
  16.                 cout<<"★☆★抽籤中★☆★"<<endl;
  17.                 else
  18.                 cout<<"☆★☆抽籤中☆★☆"<<endl;
  19.                 cout<<food[rand()%6];
  20.                 _sleep(500);
  21.                 system("cls");
  22.         }
  23.         cout<<food[rand()%6]<<endl;
  24. system("pause");     
  25. return 0;
  26. }
複製代碼

TOP

返回列表