返回列表 發帖

抽籤程式 (一)

發揮創意想想看, 抽籤程式在日生活中甚麼時候可以派上用場呢?
(ex. 要吃什麼、誰掃廁所、玩遊戲輸了做什麼處罰...)







抽籤程式流程圖.pdf
抽籤程式.exe
  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.    system("pause");

  14.    //開始抽籤(30次)
  15.    for(int i=1; i<=30; i++)
  16.    {
  17.         //做動畫
  18.         if(i%2==1)
  19.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  20.         else
  21.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  22.         cout<<food[rand()%6]<<"!"<<endl;    //rand()%6->0~5
  23.         _sleep(50);    //決定動畫的速度
  24.         system("cls");   
  25.    }
  26.    cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  27.    system("pause");
  28.    goto re;   
  29.    return 0;
  30. }
複製代碼

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

TOP

本帖最後由 廖秝瑜 於 2023-6-16 20:38 編輯
  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=1; i<=50; i++)
  15.    {
  16.            if(i%2==1){
  17.                       cout<<"★☆★正在抽籤 ★☆★"<<endl;}
  18.            else{
  19.                  cout<<"☆★☆ 正在抽籤 ☆★☆"<<endl;
  20.                 }         
  21.                  cout<<food[rand()%6]<<endl;  
  22.                  _sleep(85);
  23.                  system("cls");
  24.                  cout<<"吃: "<<food[rand()%6]<<endl;
  25. }
  26.        system("pause");   
  27.        return 0;
  28. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<ctime>
  3. using namespace std;

  4. int main(){
  5.    string food[]={"漢堡","牛排","羊肉爐","意麵","大便","餿水"};
  6.    srand(time(NULL));
  7.    cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  8.    cout<<"今天晚餐\吃什麼?"<<endl;
  9.    for(int i=0; i<=30; i++){
  10.        if(i%2==1){
  11.            cout<<"★☆★ 抽籤中 ★☆★"<<endl;           
  12.        }
  13.        else{
  14.            cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;     
  15.        }
  16.        cout<<food[rand()%6]<<endl;
  17.        _sleep(50);
  18.        system("cls");
  19.    }
  20.    cout<<"吃"<<food[rand()%6]<<endl;


  21.    system("pause");
  22.    return 0;
  23. }
複製代碼

TOP

  1. #include<ctime>
  2. #include<cstdlib>
  3. #include<iostream>
  4. using namespace std;
  5. int main(){
  6.     srand(time(NULL));
  7.     string f[]={"拉麵","壽司","漢堡","三明治","肉臊飯"};
  8.     cout<<"今天吃什麼?"<<endl;
  9.     system("pause");
  10.     for(int i=1;i<=30;i++){
  11.             if(i%2==1){
  12.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;}
  13.             else{
  14.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;}
  15.             cout<<f[rand()%5]<<endl;
  16.             _sleep(10);
  17.             system("cls");
  18. }
  19. cout<<"今天吃"<<f[rand()%5]<<endl;
  20.    
  21.     system("pause");
  22.     return 0;
  23.    
  24. }
複製代碼
Attention Seeker </3

TOP

  1. #include<iostream>
  2. #include<ctime>
  3. using namespace std;
  4. int main()
  5. {

  6. string f[]={"sTEAK","bURgER","pAsTA","RaVIOlI","tURD","wATeR","WiLD tOMATO"};
  7. srand(time(NULL));
  8. re:
  9.                    system("cls");
  10.                    cout<<"☆★☆Da mEaL rANdOMIZER☆★☆"<<endl;
  11.                    cout<<"What's the meal of the day?"<<endl<<endl;
  12.                    system("pause");
  13.                   
  14. for(int i=1;i<=100;i++)
  15. {
  16.          if(i%2==0){
  17.          cout<<"☆★☆Processing...☆★☆"<<endl;
  18.          }
  19.          else{
  20.          cout<<"★☆★Processing...★☆★"<<endl;
  21.          }
  22.          
  23.          cout<<f[rand()%7]<<"!"<<endl;
  24.          _sleep(100);
  25.          system("cls");
  26.          }
  27.          cout<<"Meal of the day: "<<f[rand()%7]<<endl;
  28.                      
  29. system("pause");
  30. goto re;
  31. return 0;
  32. }
複製代碼

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     string lose[]={"仰臥起坐","跑操場","開合跳","平板支撐","伏地挺身","蛙跳"};
  8.     srand(time(NULL));
  9.     re:
  10.     cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  11.     cout<<"輸的懲罰是什麼?"<<endl<<endl;
  12.     system("pause");
  13.     for(int a=1;a<=20;a++)
  14.     {
  15.        if(a%2==1)
  16.        {
  17.           cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  18.        }
  19.        else
  20.        {
  21.            cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  22.        }
  23.        cout<<lose[rand()%6]<<endl<<endl;
  24.        _sleep(250);
  25.        system("cls");
  26.     }
  27.     cout<<"罰:"<<lose[rand()%6]<<endl<<endl;
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  3. #include<ctime>
  4. using namespace std;

  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     string food[]={"漢堡","牛排","羊肉爐","意麵","大便","餿水"};
  9.    
  10.     cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  11.     cout<<"今天晚餐\吃什麼?"<<endl;
  12.     system("pause");
  13.     for (int i=0;i<=100;i++)
  14.     {
  15.         if(i%2==0)
  16.         {
  17.           cout<<"★☆★ 抽籤中 ★☆★"<<endl;      
  18.         }
  19.         else if(i%2==1)
  20.         {
  21.           cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;  
  22.             
  23.         }
  24.         cout<<"吃"<<food[rand()%5] <<endl;
  25.         _sleep(100);
  26.         
  27.         system("cls");

  28.     }
  29.    
  30.     system("pause");   
  31.     return 0;
  32. }
複製代碼

TOP

  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

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

TOP

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

TOP

返回列表