返回列表 發帖

抽籤程式

發揮創意想想看, 抽籤程式在日生活中甚麼時候可以派上用場呢?
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[5]={"漢堡","牛排","意麵","炒飯","大便"};
  7.     int ball;
  8.     srand(time(NULL));
  9.     cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  10.     cout<<"今天晚餐\吃甚麼?"<<endl<<endl;
  11.     system("pause");
  12.     system("cls");       //清畫面
  13.     for(int i=0; i<=150; i++)
  14.     {
  15.         ball=rand()%5;  //產生介於 0~4 的隨機亂數
  16.         if(i%2==0)
  17.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  18.         else
  19.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  20.         cout<<name[ball]<<endl;
  21.         system("cls");
  22.     }
  23.     cout<<"吃: "<<name[ball]<<"!"<<endl<<endl;
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[]={"漢堡","牛排","意麵","炒飯","大便","尿尿","薯條","果汁",
  7.     "祕魯","米酒","即拿棒","泡麵","牛肉乾","起獅堂","風水堂","牛後腿","羊小排",
  8.     "老虎牙子","哈里波特龍睪丸"};
  9.     int ball;
  10.     srand(time(NULL));
  11.     cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  12.     cout<<"晚餐\吃甚麼?"<<endl<<endl;
  13.     cout<<"please press ENTER"<<endl<<endl;
  14.     system("pause");
  15.     for(int i=0; i<=150; i++)
  16.     {
  17.         ball=rand()%19;
  18.         if(i%2==0)
  19.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  20.         else
  21.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  22.         cout<<name[ball]<<endl;
  23.         system("cls");
  24.     }
  25.     cout<<"今晚吃: "<<name[ball]<<"!"<<endl<<endl;
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    string name[5]={"漢堡","牛排","意麵","炒飯","大便"};
  7.    int a;
  8.    srand(time(NULL));
  9.    cout<<"*-*-*-*-*-*抽籤程式*-*-*-*-*-*"<<endl;
  10.    cout<<"今天晚餐\吃甚麼?"<<endl<<endl;
  11.    system("pause");
  12.    system("cls");

  13.    for(int i=0; i<=15; i++)
  14.    {
  15.       a=rand()%5;   
  16.       if(i%2==0)
  17.          cout<<"*-*-*-*-*-*抽籤程式*-*-*-*-*-*"<<endl;
  18.       else
  19.          cout<<"*-*-*抽籤中*-*-*"<<endl;
  20.          cout<<name[a]<<endl;
  21.          system("cls");
  22.    }
  23.       cout<<"吃: "<<name[a]<<"!!!!!"<<endl<<endl;      
  24.    system("pause");
  25.    return 0;   
  26. }
複製代碼

TOP

本帖最後由 戴唯陞 於 2018-11-24 17:02 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.      string food [5]={"炸雞","薯條","蛋糕","喝水","喝西北風"};  
  8.      
  9.      int ball;
  10.      srand(time(NULL));
  11.      cout<<"來抽抽看 今天晚餐吃甚麼?"<<endl;
  12.      system("pause");
  13.      system("cls");
  14.      
  15.      for(int i=0; i<=10; i++)
  16.     {
  17.      ball=rand()%5;  
  18.      if(i%2==0)
  19.        cout<<"抽籤中 請稍後"<<endl;
  20.      else
  21.       
  22.       
  23.      cout<<"抽籤中 請稍後"<<endl;
  24.      cout<<food[ball]<<endl;
  25.        system("cls");
  26.     }
  27.     cout<<"吃 "<<food[ball]<<endl<<endl;     

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string food[]={"咖哩","義大利麵","壽司","漢堡","屎"};
  7.     int eat;
  8.     srand(time(NULL));
  9.     cout<<"★☆★抽籤程式★☆★"<<endl;
  10.     cout<<"今天晚餐\要吃什麼?"<<endl<<endl;
  11.     system("pause");
  12.     for(int i=0; i<=100; i++)
  13.     {
  14.         eat=rand()%5+0;
  15.         if(i%2==0)
  16.         {
  17.             cout<<"★☆★抽籤程式★☆★"<<endl;
  18.         }else
  19.         {
  20.              cout<<"☆★☆抽籤程式☆★☆"<<endl;
  21.         }
  22.         cout<<food[eat]<<endl;
  23.         system("cls");
  24.     }
  25.     cout<<"今天晚餐\吃"<<food[eat]<<endl;
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[5]={"林肯豪華餐\","貓屎","猴屎","雞屎","人屎"};
  7.     int ball;
  8.     srand(time(NULL));
  9.     cout<<"☆★☆抽籤程式☆★☆"<<endl;
  10.     cout<<"晚餐\吃什麼"<<endl;
  11.     system("pause");
  12.     for(int i=0;i<=200;i++)
  13.     {
  14.             ball=rand()%5;
  15.             if(i%2==0)
  16.             {
  17.                cout<<"☆★☆抽籤中☆★☆"<<endl;
  18.             }else
  19.             {
  20.                cout<<"★☆★抽籤中★☆★"<<endl;  
  21.             }
  22.             cout<<name[ball]<<endl;
  23.             system("cls");
  24.     }
  25.       cout<<"吃: "<<name[ball]<<"!"<<endl<<endl;
  26.         system("pause");
  27.         return 0;
  28. }
複製代碼

TOP

返回列表