本帖最後由 李泳霖 於 2022-5-20 19:15 編輯
發揮創意想想看, 抽籤程式在日生活中甚麼時候可以派上用場呢?
(ex. 要吃什麼、誰掃廁所、玩遊戲輸了做什麼處罰...)
抽籤程式.exe- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main() //主函式
- {
- srand(time(NULL));
- cout<<"☆★☆抽籤模式☆★☆"<<endl;
- string food []={"麥當勞","泡麵","漢堡","火鍋","焗烤"};
- cout<<"今天晚餐\吃甚麼?"<<endl;
- system("pause");
- for(int i=1;i<=30;i++)
- {
- if(i%2==1)
- cout<<"★☆★抽籤ING★☆★"<<endl;
- else
- cout<<"抽籤ING"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |