返回列表 發帖

抽籤程式 (一)

本帖最後由 方浩葦 於 2024-7-20 16:19 編輯

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







抽籤程式.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.    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. }
複製代碼

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7. string a[]={"漢堡","牛排","羊肉爐","意麵","大便","餿水"};
  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
  19.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  20.         cout<<a[rand()%6]<<"!"<<endl;
  21.         _sleep(20);
  22.         system("cls");
  23.    }
  24. cout<<"吃"<<a[rand()%6]<<"!"<<endl;

  25. system("pause");
  26. return 0;
  27. }
複製代碼

TOP

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

TOP

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

TOP

返回列表