Board logo

標題: 抽籤程式 (一) [打印本頁]

作者: 鄭繼威    時間: 2023-2-24 00:15     標題: 抽籤程式 (一)

本帖最後由 鄭繼威 於 2023-2-24 00:18 編輯

發揮創意想想看, 抽籤程式在日生活中甚麼時候可以派上用場呢?
(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. }
複製代碼

作者: 陳宥霖    時間: 2023-2-25 15:09

  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(200);   
  22.         system("cls");   
  23.    }
  24.    cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  25.    system("pause");
  26.    goto re;   
  27.    return 0;
  28. }
複製代碼

作者: 吳俊頡    時間: 2023-2-25 15:10

  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.    
  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()%7]<<"!"<<endl;   
  23.         _sleep(50);   
  24.         system("cls");   
  25.    }
  26.    cout<<"吃: "<<food[rand()%7]<<"!"<<endl<<endl;
  27.    system("pause");
  28.    goto re;   
  29.    return 0;
  30. }
複製代碼

作者: 楊芊琦    時間: 2023-2-25 15:14

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int ww = 0;
  8.     cout<<"----遊樂設施挑戰死亡抽籤----"<<endl;
  9.     cout<<"誰要挑戰呢";
  10.     while(ww!=4)
  11.     {
  12.                ww+=1;
  13.                _sleep(300);
  14.                cout<<".";
  15.     }
  16.     cout<<endl;
  17.     srand(time(NULL));
  18.     string ch[] = {"老子","荀子","孔子","孟子"} ;
  19.     for(int y=0;y<=99;y++)
  20.     {
  21.             if(y%2==0)
  22.             {
  23.                       cout<<"-*-抽籤中-*-"<<endl;
  24.                       _sleep(60);
  25.             }
  26.             else
  27.             {
  28.                       cout<<"*-*抽籤中*-*"<<endl;
  29.                       _sleep(60);
  30.             }
  31.     }
  32.     cout<<"恭喜"<<ch[rand()%4]<<"被選中了"<<endl;
  33.     cout<<"我們為他默哀"<<endl;
  34.     system("pause");
  35.     return 0;
  36. }
複製代碼

作者: 翁川祐    時間: 2023-2-25 15:14

  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<=50; i++)
  15.    {
  16.         if(i%2==1)
  17.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  18.         else if
  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. }
複製代碼

作者: 徐啟祐    時間: 2023-2-25 15:15

  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(10);
  22.                 system("cls");   
  23.    }
  24.    cout<<"吃"<<food[rand()%6]<<"!"<<endl<<endl;
  25.    system("pause");
  26.    
  27.    system("pause");   
  28.    return 0;
  29. }
複製代碼

作者: 葉佳和    時間: 2023-2-25 15:18

  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. }
複製代碼

作者: 羅紹齊    時間: 2023-2-25 15:19

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.     string food[]={"便當","速食","火鍋","乾麵","牛排","日料"};
  7.         srand(time(NULL));
  8.         
  9.         re:
  10.                system("cls");
  11.                cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  12.                cout<<"今天晚餐\吃什麼?"<<endl<<endl;
  13.                system("pause");
  14.                for(int i=1;i<=50;i++){
  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.                        cout<<"吃"<<food[rand()%6]<<"!"<<endl<<endl;
  24.                        
  25.                
  26.     system("pause");
  27.     goto re;  
  28.     return 0;
  29. }
複製代碼

作者: 宜儒    時間: 2023-3-1 20:42

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.         string food[]={"漢堡","牛排","羊肉爐","意麵","大便","餿水"};
  7.         srand(time(NULL));
  8.         re:
  9.         system("cls");
  10.         cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  11.         cout<<"今天晚餐\吃什麼?"<<endl<<endl;
  12.         system("pause");
  13.        
  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<<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. }
複製代碼

作者: 陳牧謙    時間: 2023-3-11 13:07

  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(200);   
  22.         system("cls");   
  23.    }
  24.    cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  25.    system("pause");
  26.    goto re;   
  27.    return 0;
  28. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2