返回列表 發帖
  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;
  13.    cout<<"按ENTER開始抽獎!!"<<endl<<endl;
  14.    system("pause");

  15.    for(int i=1; i<=30; i++)
  16.    {
  17.         if(i%2==1)
  18.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  19.         else
  20.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  21.         cout<<food[rand()%6]<<"!"<<endl;   
  22.         _sleep(50);   
  23.         system("cls");   
  24.    }
  25.    cout<<endl;
  26.    //cout<<"吃屎拉你!"<<endl<<endl;
  27.    cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  28.    system("pause");
  29.    goto re;   
  30.    return 0;
  31. }
複製代碼

TOP

返回列表