返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string food[]={"牛排","垃圾","大便","老師和蟑螂夾心","龍蝦大漢堡","該減肥了,通通不要吃!!!"};
  7.     srand(time(NULL));
  8.     re:
  9.     cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  10.     cout<<"今天晚餐\吃什麼?"<<endl<<endl;
  11.     system("pause");
  12.     for(int i=1;i<=30;i++)
  13.     {
  14.         if(i%2==0)
  15.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  16.         else
  17.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  18.         cout<<food[rand()%6]<<"!"<<endl;
  19.         _sleep(50);
  20.         system("cls");
  21.     }   
  22.     cout<<"吃: "<<food[rand()%6]<<"!"<<endl;   
  23.     system("pause");
  24.     goto re;
  25.     return 0;   
  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string food[]={"牛排","垃圾","大便","老師和蟑螂夾心","龍蝦大漢堡","該減肥了,通通不要吃!!"};
  7.     re:
  8.     system("cls");
  9.     cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  10.     cout<<"今天晚餐\吃什麼?"<<endl<<endl;
  11.     system("pause");
  12.     for(int i=1;i<=30;i++)
  13.     {
  14.             if(i<20)
  15.             {
  16.                 if(i%2==0)
  17.                 cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  18.             else
  19.                 cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  20.             cout<<food[rand()%6]<<"!"<<endl;
  21.             _sleep(100);
  22.             system("cls");       
  23.                 }
  24.         else
  25.         {
  26.                 if(i%2==0)
  27.                     cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  28.                 else
  29.                     cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  30.             cout<<food[rand()%6]<<"!"<<endl;
  31.             _sleep(200);
  32.             system("cls");
  33.                 }
  34.             
  35.     }   
  36.     cout<<"吃: "<<food[rand()%6]<<"!"<<endl;   
  37.     system("pause");
  38.     goto re;
  39.     return 0;   
  40. }
複製代碼

TOP

返回列表