返回列表 發帖

抽籤程式 (一)

本帖最後由 tonyh 於 2019-9-17 21:11 編輯

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







  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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  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.     cout<<"★☆★ 抽籤程式 ★☆★"<<endl;
  10.     cout<<"今天晚餐\吃什麼?"<<endl;
  11.     system("pause");
  12.     for(int i=1; i<=50; i++)
  13.     {
  14.         if(i%2==1)
  15.         {
  16.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;         
  17.         }else
  18.         {
  19.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  20.         }
  21.         cout<<food[rand()%9]<<endl;
  22.         system("cls");
  23.     }
  24.     cout<<"吃"<<food[rand()%9]<<"!"<<endl;
  25.    
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

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

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()%5]<<"!"<<endl;
  20.         _sleep(50);
  21.         system("cls");   
  22.    }
  23.    cout<<"吃: "<<food[rand()%5]<<"!"<<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

  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. 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

返回列表