返回列表 發帖

抽籤程式 (一)

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







抽籤程式.exe
May

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

TOP

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

TOP

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

TOP

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

TOP

本帖最後由 朱奕祐 於 2021-1-23 21:01 編輯
  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. }
複製代碼

TOP

本帖最後由 余柏緯 於 2021-1-26 14:22 編輯
  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<=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. using namespace std;
  4. int main()
  5. {
  6.     string play[]={"打球","打電動","玩積木"}
  7.     system("pause");   
  8.     return 0;
  9. }
複製代碼

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    string f[]={"雞","豬","牛","羊","藥","鍋"};
  8.    srand(time(NULL));
  9.    re:
  10.    system("cls");
  11.    cout<<"*** 抽籤 ***"<<endl;
  12.    cout<<"今天晚餐\吃什麼?"<<endl<<endl;
  13.    system("pause");
  14.    for(int y=1; y<=30; y++)
  15.    {
  16.         if(y%2==1)
  17.             cout<<" ★☆★抽籤ing ★☆★"<<endl;
  18.         else
  19.             cout<<" ☆★☆抽籤ing ☆★☆"<<endl;
  20.         cout<<f[rand()%6]<<"!"<<endl;
  21.         _sleep(50);
  22.         system("cls");   
  23.    }
  24.    cout<<"吃: "<<f[rand()%6]<<"!"<<endl<<endl;
  25.    system("pause");
  26.    goto re;   
  27.    return 0;
  28. }
複製代碼

TOP

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

TOP

返回列表