Board logo

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

作者: tonyh    時間: 2020-1-31 20:35     標題: 抽籤程式 (一)

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







抽籤程式.exe
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    string food[]={"漢堡","牛排","羊肉爐","意麵","大便","餿水"};
  7.    srand(time(NULL));
  8.    re:
  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.    cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  24.    system("pause");
  25.    goto re;   
  26.    return 0;
  27. }
複製代碼

作者: 林政瑜    時間: 2020-1-31 20:49

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    string food[]={"防腐劑","農藥","毒藥","肥料","大便","餿水"};
  7.    srand(time(NULL));
  8.    re:
  9.    system("cls");
  10.    cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  11.    cout<<"今天晚餐\吃什麼?"<<endl<<endl;
  12.    system("pause");
  13.    for(int i=1; i<=50; 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.    cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  24.    system("pause");
  25.    goto re;   
  26.    return 0;
  27. }
複製代碼

作者: 陳宥穎    時間: 2020-1-31 20:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    string food[]={"漢堡","牛排","羊肉爐","意麵","大便","餿水"};
  7.    srand(time(NULL));
  8.    re:
  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.    cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  24.    system("pause");
  25.    goto re;   
  26.    return 0;
  27. }
複製代碼

作者: 孫嘉駿    時間: 2020-1-31 20:51

本帖最後由 孫嘉駿 於 2020-2-7 09:32 編輯
  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. }
複製代碼

作者: 李宇澤    時間: 2020-1-31 20:52

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    string food[]={"燴飯","牛排","一隻羊","義大利麵","屎",";亡水"};
  7.    srand(time(NULL));
  8.    re:
  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.    cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  24.    system("pause");
  25.    goto re;   
  26.    return 0;
  27. }
複製代碼

作者: 蔡忻霓    時間: 2020-1-31 20:56

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    string food[]={"TWICE","GOT7","Red Velvet","BTS","BlackPink","EXO"};
  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<<"like: "<<food[rand()%6]<<"!"<<endl<<endl;
  25.     system("pause");
  26.     goto re;  
  27.     return 0;   
  28. }
複製代碼

作者: 董宸佑    時間: 2020-1-31 20:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     string f[]={"空氣","大便","杯子","盤子","湯匙"};
  9.     cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl<<endl;
  10.     cout<<"今天晚餐\吃什麼?"<<endl<<endl;
  11.     system("pause");
  12.     for(int i=0; i<=30; i++)
  13.     {
  14.         if(i%2==1)
  15.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  16.         else
  17.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  18.         cout<<f[rand%6]<<"!"<<endl;
  19.         _sleep(50);
  20.         system("cls");      
  21.     }
  22.     cout<<"吃"<<f[rand%6]<<"!"<<endl<<endl;
  23.     system("pause");
  24.     return 0;   
  25. }
複製代碼

作者: 黃宥華    時間: 2020-2-7 12:20

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    string car[]={"直升機","噴射機","船","飛天魔毯","火車","高鐵"};
  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<<car[rand()%6]<<"!"<<endl;
  21.         _sleep(50);
  22.         system("cls");   
  23.    }
  24.    cout<<"搭: "<<car[rand()%6]<<"!"<<endl<<endl;
  25.    system("pause");
  26.    goto re;   
  27.    return 0;
  28. }
複製代碼

作者: 黃辰昊    時間: 2020-2-7 18:46

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    string food[]={"漢堡","牛排","羊肉爐","意麵","大便","餿水"};
  7.    srand(time(NULL));
  8.    re:
  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.    cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  24.    system("pause");
  25.    goto re;   
  26.    return 0;
  27. }
複製代碼

作者: 余有晉    時間: 2020-2-12 12:00

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    string food [6]={"漢堡排","羊肉爐","意麵","大便","餿水","蛋餅"};
  7.    srand(time(NULL));
  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%2==1)
  15.        {
  16.            cout<<"★☆★抽籤中★☆★"<<endl;
  17.       
  18.        }else
  19.        {
  20.            cout<<"☆★☆抽籤中☆★☆"<<endl;
  21.        }
  22.        cout<<food[rand()%6]<<"!"<<endl<<endl;
  23.         _sleep(50);
  24.         system("cls");   
  25.    }
  26.       cout<<food[rand()%6]<<"!"<<endl<<endl;
  27.     system("pause");   
  28.     return 0;
  29. }
複製代碼





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