返回列表 發帖

抽籤程式 (一)

本帖最後由 李泳霖 於 2022-5-20 19:15 編輯

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







抽籤程式.exe
  1. #include<iostream>   
  2. #include<cstdlib>   
  3. using namespace std;  
  4. int main()    //主函式
  5. {
  6.     srand(time(NULL));
  7.     cout<<"☆★☆抽籤模式☆★☆"<<endl;
  8.     string food []={"麥當勞","泡麵","漢堡","火鍋","焗烤"};
  9.     cout<<"今天晚餐\吃甚麼?"<<endl;
  10.     system("pause");
  11.     for(int i=1;i<=30;i++)
  12.     {
  13.             if(i%2==1)
  14.                 cout<<"★☆★抽籤ING★☆★"<<endl;
  15.             else
  16.                 cout<<"抽籤ING"<<endl;
  17.     }
  18.     system("pause");      
  19.     return 0;              
  20. }
複製代碼

此帖僅作者可見

TOP

返回列表