本帖最後由 陳品肇 於 2019-3-30 14:14 編輯
發揮創意想想看, 抽籤程式在日生活中甚麼時候可以派上用場呢?- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int n ;
- string name[5]={"雞排","便當","麵","粥","火鍋"};
- cout<<"☆★☆抽籤程式☆★☆"<<endl;
- cout<<"今晚你要吃什麼?"<<endl;
- system("pause"); //畫面停留
- system("cls"); //畫面清空
- srand(time(NULL));
-
- for(int i=1;i<=100;i++) //做出跑馬燈的效果
- {
- //產生0~4
- n = rand()%5;
- if(i%2==0)
- {
- cout<<"☆★☆抽籤中☆★☆"<<endl;
- }else
- {
- cout<<"★☆★抽籤中★☆★"<<endl;
- }
- cout<<name[n]<<endl; //印出食物名稱
- system("cls"); //畫面清空
- }
-
-
- cout<<"今晚選重的食物是:"<<name[n]<<endl; //印出食物名稱
-
- system("pause");
- return 0;
- }
複製代碼 |