返回列表 發帖
本帖最後由 朱奕祐 於 2021-1-30 19:50 編輯
  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.         system("pause");
  14.     for(int i=50; i<=120; i++)
  15.     {
  16.         if(i%2==1)
  17.             cout<<"○●○ 抽籤中 ○●○"<<endl;
  18.         else
  19.             cout<<"●○● 抽籤中 ●○●"<<endl;
  20.         cout<<food[rand()%6]<<"!"<<endl;
  21.         _sleep(i);
  22.         system("cls");   
  23.     }
  24.         cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  25.     system("pause");
  26.     goto re;   
  27.     return 0;
  28. }
複製代碼

TOP

返回列表